7155-travel_daysOnward_2 #759

Merged
alexm merged 7 commits from 7155-travel_daysOnward_2 into test 2024-09-25 11:27:26 +00:00
1 changed files with 2 additions and 3 deletions
Showing only changes of commit 991ad21c77 - Show all commits

View File

@ -119,10 +119,9 @@ watch(
);
watch(
() => [props.url, props.filter, props.userParams],
([url, filter, userParams]) => mounted.value && fetch({ url, filter, userParams })
() => [props.url, props.filter],
([url, filter]) => mounted.value && fetch({ url, filter })
);
const addFilter = async (filter, params) => {
await arrayData.addFilter({ filter, params });
};