@smartbit4all/ng-client 3.3.236 → 3.3.237
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 +3 -3
- package/fesm2015/smartbit4all-ng-client.mjs +2 -2
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +2 -2
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.237.tgz +0 -0
- package/smartbit4all-ng-client-3.3.236.tgz +0 -0
|
@@ -14632,9 +14632,9 @@ class SmartFilterEditorContentComponent {
|
|
|
14632
14632
|
if (this.simpleFilterRef?.instance) {
|
|
14633
14633
|
// we already have a SmartFormComponent, use that
|
|
14634
14634
|
let comp = this.simpleFilterRef?.instance;
|
|
14635
|
-
if (comp.smartForm && deepEqual(comp.smartForm, smartForm)) {
|
|
14635
|
+
if (comp.smartForm && deepEqual(comp.smartForm.widgets, smartForm.widgets)) {
|
|
14636
14636
|
// there's no structural change, don't recreate SmartFormComponent
|
|
14637
|
-
comp.smartForm.componentModel =
|
|
14637
|
+
comp.smartForm.componentModel = smartForm.componentModel;
|
|
14638
14638
|
comp.constructForm();
|
|
14639
14639
|
return;
|
|
14640
14640
|
}
|