fix: refs #4074 await to watch
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-09-09 17:20:16 +02:00
parent f8cbb0a762
commit f3471fe5ab
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ watch(
watch(
() => [props.url, props.filter, props.userParams],
([url, filter, userParams]) => fetch({ url, filter, userParams })
([url, filter, userParams]) => mounted.value && fetch({ url, filter, userParams })
);
const addFilter = async (filter, params) => {