@open-rlb/ng-app 3.0.0 → 3.0.1

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.
@@ -512,7 +512,7 @@ class AppsService {
512
512
  }
513
513
  const matchedApps = data.apps
514
514
  // domain filter in case apps have similar routes path
515
- .filter(app => app.domains?.some((domain) => domain.includes(this.currentDomain)))
515
+ .filter(app => !app.domains || app.domains?.some((domain) => domain.includes(this.currentDomain)))
516
516
  .filter(app => app.routes?.some(r => r.includes(route.routeConfig?.path)) ||
517
517
  app.core?.url === '/' + route.routeConfig?.path);
518
518
  let appToSelect;