@trackunit/filters-asset-filter-definitions 0.0.243 → 0.0.245
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/index.cjs.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -1517,7 +1517,7 @@ const BrandFilterView = (props) => {
|
|
|
1517
1517
|
fetchPolicy: "cache-first",
|
|
1518
1518
|
variables: {
|
|
1519
1519
|
limit: FETCH_LIMIT$7,
|
|
1520
|
-
search: debouncedSearch,
|
|
1520
|
+
search: debouncedSearch.trim(),
|
|
1521
1521
|
filters: Object.assign(Object.assign({}, activeFilters), { brands: null }),
|
|
1522
1522
|
},
|
|
1523
1523
|
});
|
package/index.esm.js
CHANGED
|
@@ -1493,7 +1493,7 @@ const BrandFilterView = (props) => {
|
|
|
1493
1493
|
fetchPolicy: "cache-first",
|
|
1494
1494
|
variables: {
|
|
1495
1495
|
limit: FETCH_LIMIT$7,
|
|
1496
|
-
search: debouncedSearch,
|
|
1496
|
+
search: debouncedSearch.trim(),
|
|
1497
1497
|
filters: Object.assign(Object.assign({}, activeFilters), { brands: null }),
|
|
1498
1498
|
},
|
|
1499
1499
|
});
|