#8207 hotfix-tableActions #991

Merged
jorgep merged 11 commits from 8207-hotfix-tableActions into master 2024-11-25 11:13:45 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 3a4c0e729a - Show all commits

View File

@ -136,11 +136,11 @@ async function fetch(params, keepPagination = false) {
if (!keepPagination) await arrayData.fetch({ append: false });
else {
arrayData.store.limit = limit + skip;
arrayData.store.skip = 0;
store.limit = limit + skip;
store.skip = 0;
await arrayData.fetch({ append: false });
arrayData.store.limit = limit;
arrayData.store.skip = skip;
store.limit = limit;
store.skip = skip;
}
if (!store.hasMoreData) isLoading.value = false;