@lowcodeunit/applications-flow-common 1.32.7-apps-flow → 1.32.8-apps-flow

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.
@@ -2534,7 +2534,10 @@
2534
2534
  DomainsComponent.prototype.save = function () {
2535
2535
  this.appsFlowEventsSvc.SaveProjectAsCode({
2536
2536
  ProjectLookup: this.ProjectLookup,
2537
- Project: Object.assign(Object.assign({}, this.Project), { Hosts: __spread(this.Project.Hosts, [this.Domain.value]) }),
2537
+ Project: Object.assign(Object.assign({}, this.Project), {
2538
+ // Hosts: [...this.Project.Hosts, this.Domain.value],
2539
+ Hosts: [this.Domain.value]
2540
+ }),
2538
2541
  });
2539
2542
  this.formsService.UpdateValuesReference({
2540
2543
  Id: this.formName,