rez_core 1.0.97 → 1.0.98
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/package.json
CHANGED
|
@@ -100,10 +100,11 @@ export class FilterService {
|
|
|
100
100
|
// Get and parse filters
|
|
101
101
|
const savedFilters = await this.getSavedFilters(savedFilterCode);
|
|
102
102
|
const baseFilters = [
|
|
103
|
-
...(quickFilter || []),
|
|
104
|
-
...savedFilters,
|
|
105
|
-
...(attributeFilter || []),
|
|
103
|
+
...(quickFilter || []).filter(f => f.filter_value !== ""),
|
|
104
|
+
...savedFilters.filter(f => f.filter_value !== ""),
|
|
105
|
+
...(attributeFilter || []).filter(f => f.filter_value !== ""),
|
|
106
106
|
];
|
|
107
|
+
|
|
107
108
|
const baseWhere = this.buildWhereClauses(baseFilters, attributeMetaMap);
|
|
108
109
|
|
|
109
110
|
// Build query for tab counts (no tab.value filter here)
|