ngx-wapp-components 1.3.2 → 1.3.3
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.
|
@@ -2622,8 +2622,6 @@ class WFilterPanelComponent {
|
|
|
2622
2622
|
};
|
|
2623
2623
|
this.setEntity(queries);
|
|
2624
2624
|
queries = this.initializeOperators(queries);
|
|
2625
|
-
queries = this.deleteFieldsWithoutValue(queries);
|
|
2626
|
-
queries = this.handleEmptyFieldsQuery(queries);
|
|
2627
2625
|
let storedQuery = {
|
|
2628
2626
|
id: this.filterId,
|
|
2629
2627
|
basicQueryValue: queries.basic,
|
|
@@ -2631,6 +2629,8 @@ class WFilterPanelComponent {
|
|
|
2631
2629
|
groupedQueryValue: queries.grouped
|
|
2632
2630
|
};
|
|
2633
2631
|
this.localStorage.setLastFilterPanelQuery(storedQuery);
|
|
2632
|
+
queries = this.deleteFieldsWithoutValue(queries);
|
|
2633
|
+
queries = this.handleEmptyFieldsQuery(queries);
|
|
2634
2634
|
this.searchClicked.emit(queries);
|
|
2635
2635
|
}
|
|
2636
2636
|
onClearClicked() {
|