@lowcodeunit/applications-flow-common 1.37.165-integration → 1.37.167-state-config-checks
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 +7 -7
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +10 -9
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +6 -6
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
@@ -7204,13 +7204,13 @@ class StateConfigFormComponent {
|
|
7204
7204
|
this.StatusEvent = new EventEmitter();
|
7205
7205
|
}
|
7206
7206
|
get StateConfigNameFormControl() {
|
7207
|
-
return this.StateConfigForm?.controls
|
7207
|
+
return this.StateConfigForm?.controls?.name;
|
7208
7208
|
}
|
7209
7209
|
get StateConfigDescriptionFormControl() {
|
7210
|
-
return this.StateConfigForm?.controls
|
7210
|
+
return this.StateConfigForm?.controls?.description;
|
7211
7211
|
}
|
7212
7212
|
get StateConfigValueFormControl() {
|
7213
|
-
return this.StateConfigForm?.controls
|
7213
|
+
return this.StateConfigForm?.controls?.value;
|
7214
7214
|
}
|
7215
7215
|
ngOnInit() {
|
7216
7216
|
this.buildForm();
|
@@ -7220,9 +7220,9 @@ class StateConfigFormComponent {
|
|
7220
7220
|
let app = this.Application;
|
7221
7221
|
console.log('APP = ', app);
|
7222
7222
|
app.DataTokens['lcu-state-config'] = {
|
7223
|
-
Name: this.StateConfigNameFormControl
|
7224
|
-
Description: this.StateConfigDescriptionFormControl
|
7225
|
-
Value: this.StateConfigValueFormControl
|
7223
|
+
Name: this.StateConfigNameFormControl?.value,
|
7224
|
+
Description: this.StateConfigDescriptionFormControl?.value,
|
7225
|
+
Value: this.StateConfigValueFormControl?.value,
|
7226
7226
|
};
|
7227
7227
|
const saveAppReq = {
|
7228
7228
|
ApplicationLookup: this.AppLookup || Guid.CreateRaw(),
|