@lowcodeunit/applications-flow-common 1.34.84-lets-get-social-ish → 1.35.2-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/state-config-form/state-config-form.component.mjs +3 -3
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +4 -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
|
@@ -6652,7 +6652,7 @@ class StateConfigFormComponent {
|
|
|
6652
6652
|
this.StateConfigDialogForm = this.formbldr.group({});
|
|
6653
6653
|
}
|
|
6654
6654
|
get StateConfigFormControl() {
|
|
6655
|
-
return this.StateConfigDialogForm
|
|
6655
|
+
return this.StateConfigDialogForm?.controls.config;
|
|
6656
6656
|
}
|
|
6657
6657
|
ngOnInit() {
|
|
6658
6658
|
this.buildForm();
|
|
@@ -6660,7 +6660,7 @@ class StateConfigFormComponent {
|
|
|
6660
6660
|
SaveStateConfig() {
|
|
6661
6661
|
const saveAppReq = {
|
|
6662
6662
|
ApplicationLookup: this.AppLookup || Guid.CreateRaw(),
|
|
6663
|
-
DataToken: this.StateConfigFormControl
|
|
6663
|
+
DataToken: this.StateConfigFormControl?.value
|
|
6664
6664
|
};
|
|
6665
6665
|
this.eacSvc.SaveApplicationAsCode(saveAppReq);
|
|
6666
6666
|
}
|