diff --git a/src/composables/useArrayData.js b/src/composables/useArrayData.js index 9165a99e41..7e0a07bb33 100644 --- a/src/composables/useArrayData.js +++ b/src/composables/useArrayData.js @@ -136,7 +136,7 @@ export function useArrayData(key, userOptions) { } async function refresh(showAll = true) { - if (showAll || (!showAll && Object.values(store.userParams).length)) + if (showAll || Object.values(store.userParams).length) await fetch({ append: false }); }