add boolean to ignore folderId sorting, show all files on drive cleaner

This commit is contained in:
Marie 2025-05-07 09:06:50 +02:00
parent 216ab3aea7
commit da54742291
No known key found for this signature in database
GPG key ID: 7ADF6C9CD9A28555
2 changed files with 8 additions and 5 deletions

View file

@ -68,7 +68,7 @@ const sortMode = ref('+size');
const pagination = {
endpoint: 'drive/files' as const,
limit: 10,
params: computed(() => ({ sort: sortMode.value })),
params: computed(() => ({ sort: sortMode.value, notShowAll: false })),
offsetMode: true,
};