@lowcodeunit/applications-flow-common 1.36.161-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.
- package/esm2020/lib/services/project.service.mjs +3 -3
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +3 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +2 -2
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
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
|
|
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);
|