impaktapps-ui-builder 0.0.274 → 0.0.275

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6277,7 +6277,11 @@ const getNavigationHistory = (config, path) => {
6277
6277
  });
6278
6278
  arr.map((e) => {
6279
6279
  const data2 = _.get(config, e);
6280
- urlRoutes = urlRoutes + ` > ${(data2 == null ? void 0 : data2.name) || (data2 == null ? void 0 : data2.eventType)}`;
6280
+ if (data2) {
6281
+ urlRoutes = urlRoutes + ` > ${(data2 == null ? void 0 : data2.name) || (data2 == null ? void 0 : data2.eventType)}`;
6282
+ } else {
6283
+ urlRoutes = urlRoutes + " > NewComponent";
6284
+ }
6281
6285
  });
6282
6286
  return { pageName: urlRoutes };
6283
6287
  }