@lowcodeunit/applications-flow-common 1.39.53-hardening-bugs → 1.39.54-hardening-bugs
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.
- package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +4 -4
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +3 -3
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +3 -3
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
@@ -5761,9 +5761,9 @@ class BreadcrumbComponent {
|
|
5761
5761
|
// console.log('routed apps: ', this.RoutedApplications);
|
5762
5762
|
if (this.SelectedRoute) {
|
5763
5763
|
// console.log('selected route: ', this.SelectedRoute);
|
5764
|
-
this.CurrentRouteApplicationLookups =
|
5765
|
-
Object.keys(this.RoutedApplications[this.SelectedRoute])
|
5766
|
-
|
5764
|
+
this.CurrentRouteApplicationLookups = this.RoutedApplications[this.SelectedRoute]
|
5765
|
+
? Object.keys(this.RoutedApplications[this.SelectedRoute])
|
5766
|
+
: [];
|
5767
5767
|
}
|
5768
5768
|
}
|
5769
5769
|
if (this.SelectedProject && this.ApplicationsBank) {
|