@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.
@@ -6652,7 +6652,7 @@ class StateConfigFormComponent {
6652
6652
  this.StateConfigDialogForm = this.formbldr.group({});
6653
6653
  }
6654
6654
  get StateConfigFormControl() {
6655
- return this.StateConfigDialogForm.controls.config;
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.value
6663
+ DataToken: this.StateConfigFormControl?.value
6664
6664
  };
6665
6665
  this.eacSvc.SaveApplicationAsCode(saveAppReq);
6666
6666
  }