@smartbit4all/ng-client 3.3.18 → 3.3.19

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.
@@ -13386,6 +13386,9 @@ class SmartFilterEditorContentComponent {
13386
13386
  this.filterValueChangeSub.unsubscribe();
13387
13387
  }
13388
13388
  setupSimpleFilter() {
13389
+ if (this.simpleFilterForm) {
13390
+ return;
13391
+ }
13389
13392
  let widgets = [];
13390
13393
  let key;
13391
13394
  let model = {};
@@ -13425,7 +13428,7 @@ class SmartFilterEditorContentComponent {
13425
13428
  useOnBlurEvent: true,
13426
13429
  widgets,
13427
13430
  };
13428
- if (!deepEqual(smartForm.widgets, this.simpleFilterForm?.widgets)) {
13431
+ if (!deepEqual(smartForm, this.simpleFilterForm)) {
13429
13432
  this.simpleFilterForm = smartForm;
13430
13433
  }
13431
13434
  }