@lowcodeunit/applications-flow-common 1.33.258-lets-get-social-ish → 1.33.261-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/controls/edit-application-form/edit-application-form.component.mjs +2 -1
- package/esm2020/lib/dialogs/new-application-dialog/new-application-dialog.component.mjs +2 -1
- package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +2 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +3 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +3 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5268,6 +5268,7 @@ class EditApplicationFormComponent {
|
|
|
5268
5268
|
Application: app,
|
|
5269
5269
|
ApplicationLookup: this.ApplicationLookup,
|
|
5270
5270
|
};
|
|
5271
|
+
console.log("processor details being submitted: ", app.Processor);
|
|
5271
5272
|
this.eacSvc.SaveApplicationAsCode(saveAppReq).then(res => {
|
|
5272
5273
|
this.SaveFormEvent.emit(res);
|
|
5273
5274
|
});
|
|
@@ -5325,7 +5326,7 @@ class BreadcrumbComponent {
|
|
|
5325
5326
|
this.SkeletonEffect = 'wave';
|
|
5326
5327
|
}
|
|
5327
5328
|
get Enterprise() {
|
|
5328
|
-
return this.State
|
|
5329
|
+
return this.State?.EaC?.Enterprise;
|
|
5329
5330
|
}
|
|
5330
5331
|
get ApplicationsBank() {
|
|
5331
5332
|
return this.State?.EaC?.Applications || {};
|
|
@@ -5626,6 +5627,7 @@ class NewApplicationDialogComponent {
|
|
|
5626
5627
|
else if (app) {
|
|
5627
5628
|
app.LowCodeUnit.SourceControlLookup = null;
|
|
5628
5629
|
}
|
|
5630
|
+
console.log("Save new App request: ", saveAppReq);
|
|
5629
5631
|
this.eacSvc.SaveApplicationAsCode(saveAppReq).then(res => {
|
|
5630
5632
|
this.handleSaveStatus(res);
|
|
5631
5633
|
});
|