@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.
- package/esm2020/lib/smart-filter-editor/smart-filter-editor-content/smart-filter-editor-content.component.mjs +5 -2
- package/fesm2015/smartbit4all-ng-client.mjs +5 -2
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +4 -1
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.19.tgz +0 -0
- package/smartbit4all-ng-client-3.3.18.tgz +0 -0
|
@@ -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
|
|
13431
|
+
if (!deepEqual(smartForm, this.simpleFilterForm)) {
|
|
13429
13432
|
this.simpleFilterForm = smartForm;
|
|
13430
13433
|
}
|
|
13431
13434
|
}
|