7983-testToMaster_2438 #718

Merged
alexm merged 353 commits from 7983-testToMaster_2438 into master 2024-09-17 05:39:39 +00:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit 51bc3b6cba - Show all commits

View File

@ -94,7 +94,10 @@ watch(
);
watch(
() => route.params.id,
() => arrayData.reloadRoute()
() => {
arrayData.reloadRoute();
fetch();
}
);
const addFilter = async (filter, params) => {
await arrayData.addFilter({ filter, params });

View File

@ -49,8 +49,6 @@ export function useArrayData(key, userOptions) {
store.filter.where[keyFk] = route.params.id;
}
}
fetch({ append: false });
}
function setOptions() {