@lowcodeunit/applications-flow-common 1.33.208-lets-get-social-ish → 1.33.212-lets-get-social-ish
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/eac.service.mjs +2 -2
- package/esm2020/lib/services/project.service.mjs +2 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +2 -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/lib/services/eac.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -575,7 +575,7 @@ class ProjectService {
|
|
|
575
575
|
this.LoadEnterpriseAsCode(state),
|
|
576
576
|
this.LoadUserFeed(1, 25, state)
|
|
577
577
|
]);
|
|
578
|
-
resolve(
|
|
578
|
+
resolve(response.Status);
|
|
579
579
|
}
|
|
580
580
|
else {
|
|
581
581
|
state.Loading = false;
|
|
@@ -825,7 +825,7 @@ class EaCService {
|
|
|
825
825
|
await this.handleSaveDFSModifier(req);
|
|
826
826
|
}
|
|
827
827
|
async SaveEnterpriseAsCode(eac) {
|
|
828
|
-
await this.projectService.SaveEnterpriseAsCode(this.State, eac);
|
|
828
|
+
return await this.projectService.SaveEnterpriseAsCode(this.State, eac);
|
|
829
829
|
}
|
|
830
830
|
async SaveEnvironmentAsCode(req) {
|
|
831
831
|
return await this.handleSaveEnvironment(req);
|