@smartbit4all/ng-client 3.3.81 → 3.3.82

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.
@@ -13645,6 +13645,9 @@ class SmartFilterEditorContentComponent {
13645
13645
  setupSimpleFilter() {
13646
13646
  this.simpleFilterVcRef?.clear();
13647
13647
  this.simpleFilterRef?.destroy();
13648
+ if (!this.simpleFilterRef) {
13649
+ return;
13650
+ }
13648
13651
  let widgets = [];
13649
13652
  let key;
13650
13653
  let model = {};
@@ -13737,6 +13740,9 @@ class SmartFilterEditorContentComponent {
13737
13740
  constructForm() {
13738
13741
  this.vcRef?.clear();
13739
13742
  this.formCompRef?.destroy();
13743
+ if (!this.vcRef) {
13744
+ return;
13745
+ }
13740
13746
  let generatedWidgets = this.layoutService.render({
13741
13747
  layoutDefinitions: this.service.model?.selectedFieldEditor?.layoutDef?.widgets,
13742
13748
  });