atom-nuxt 1.2.2 → 1.3.1
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/dist/module.json
CHANGED
|
@@ -255,11 +255,6 @@ watch(() => filterValues, () => {
|
|
|
255
255
|
debouncedGet();
|
|
256
256
|
}, {deep: true});
|
|
257
257
|
|
|
258
|
-
watch(() => props.customFilters, (newVal) => {
|
|
259
|
-
// Update filterValues when customFilters prop changes
|
|
260
|
-
filterValues.value = {...newVal, ...filterValues.value};
|
|
261
|
-
}, {deep: true});
|
|
262
|
-
|
|
263
258
|
const debouncedGet = useDebounceFn(() => {
|
|
264
259
|
console.error("DEBOUNCED GET");
|
|
265
260
|
getItems(Number.parseInt(page.value) ?? null, null, filterValues.value);
|