@lowcodeunit/applications-flow-common 1.39.106-merge → 1.39.109-primaryhost
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-project-form/edit-project-form.component.mjs +6 -6
- package/esm2020/lib/elements/projects/controls/tabs/domains/domains.component.mjs +5 -5
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +17 -15
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +9 -9
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts +1 -1
- package/package.json +1 -1
@@ -2216,8 +2216,8 @@ class DomainsComponent {
|
|
2216
2216
|
/**
|
2217
2217
|
* Save changes
|
2218
2218
|
*/
|
2219
|
-
save() {
|
2220
|
-
this.eacSvc.SaveProjectAsCode({
|
2219
|
+
async save() {
|
2220
|
+
await this.eacSvc.SaveProjectAsCode({
|
2221
2221
|
ProjectLookup: this.Data?.ProjectLookup,
|
2222
2222
|
Project: {
|
2223
2223
|
...this.Data?.Project,
|
@@ -2226,8 +2226,8 @@ class DomainsComponent {
|
|
2226
2226
|
PrimaryHost: this.Domain.value,
|
2227
2227
|
},
|
2228
2228
|
});
|
2229
|
-
this.eacSvc.ConfigureCustomDomain(this.Domain.value);
|
2230
|
-
this.formsService.UpdateValuesReference({
|
2229
|
+
await this.eacSvc.ConfigureCustomDomain(this.Domain.value);
|
2230
|
+
await this.formsService.UpdateValuesReference({
|
2231
2231
|
Id: this.formName,
|
2232
2232
|
Form: this.Form,
|
2233
2233
|
});
|
@@ -7591,11 +7591,11 @@ class EditProjectFormComponent {
|
|
7591
7591
|
this.setupProjectForm();
|
7592
7592
|
}
|
7593
7593
|
SaveProject() {
|
7594
|
-
const proj =
|
7595
|
-
|
7596
|
-
|
7597
|
-
|
7598
|
-
|
7594
|
+
const proj = {
|
7595
|
+
Project: {
|
7596
|
+
Name: this.NameFormControl.value,
|
7597
|
+
Description: this.DescriptionFormControl.value,
|
7598
|
+
},
|
7599
7599
|
};
|
7600
7600
|
const saveProjReq = {
|
7601
7601
|
ProjectLookup: this.ProjectLookup,
|