hotfix: Ticket negative improve #1591

Merged
jsegarra merged 25 commits from hotfix_negative_available into master 2025-04-15 21:04:31 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 82b6fb6c2f - Show all commits

View File

@ -59,7 +59,8 @@ async function getData() {
store.filter = $props.filter ?? {};
isLoading.value = true;
try {
const { data } = await arrayData.fetch({ append: false, updateRouter: false });
await arrayData.fetch({ append: false, updateRouter: false });
const { data } = store;
state.set($props.dataKey, data);
emit('onFetch', data);
} finally {