0
0
Fork 0

ref #5417 fix refresh method

This commit is contained in:
Jorge Penadés 2023-10-02 09:02:15 +02:00
parent f14702ca9f
commit 2b10278901
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ export function useArrayData(key, userOptions) {
} }
async function refresh(showAll = true) { async function refresh(showAll = true) {
if (showAll || (!showAll && Object.values(store.userParams).length)) if (showAll || Object.values(store.userParams).length)
await fetch({ append: false }); await fetch({ append: false });
} }