@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.
@@ -7204,13 +7204,13 @@ class StateConfigFormComponent {
7204
7204
  this.StatusEvent = new EventEmitter();
7205
7205
  }
7206
7206
  get StateConfigNameFormControl() {
7207
- return this.StateConfigForm?.controls.name;
7207
+ return this.StateConfigForm?.controls?.name;
7208
7208
  }
7209
7209
  get StateConfigDescriptionFormControl() {
7210
- return this.StateConfigForm?.controls.description;
7210
+ return this.StateConfigForm?.controls?.description;
7211
7211
  }
7212
7212
  get StateConfigValueFormControl() {
7213
- return this.StateConfigForm?.controls.value;
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.value,
7224
- Description: this.StateConfigDescriptionFormControl.value,
7225
- Value: this.StateConfigValueFormControl.value,
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(),