@lowcodeunit/applications-flow-common 1.36.163-krakyn-bugs → 1.36.164-krakyn-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.
@@ -537,7 +537,7 @@ class ProjectService {
537
537
  let paramMap = this.activatedRoute.snapshot.children[0].paramMap;
538
538
  let result = this.loadApplicationsForFeed(state, paramMap);
539
539
  this.appsFlowSvc
540
- .LoadUserFeed(page, pageSize, result.Project, result.Applications)
540
+ .LoadUserFeed(page, pageSize, result?.Project, result?.Applications)
541
541
  .subscribe(async (response) => {
542
542
  state.LoadingFeed = false;
543
543
  if (response.Status.Code === 0) {
@@ -703,7 +703,7 @@ class ProjectService {
703
703
  }
704
704
  else if (route && project) {
705
705
  const apps = {};
706
- state.EaC.Projects[project].ApplicationLookups.forEach((appLookup) => {
706
+ state.EaC?.Projects[project].ApplicationLookups.forEach((appLookup) => {
707
707
  apps[appLookup] = state.EaC.Applications[appLookup];
708
708
  });
709
709
  var routedApps = this.GenerateRoutedApplications(apps, state);