diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-04-21 11:17:17 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-04-21 11:17:17 +0100 |
| commit | 504ff4c2af04d474cdd6d3da5c469d9ca00ce9e1 (patch) | |
| tree | 0418951bca6c4fd3f8995d2cd4a9f474ed7a4ad8 /packages/frontend/src/components/MkFileListForAdmin.vue | |
| parent | rework pagination - fixes #491 (diff) | |
| download | sharkey-504ff4c2af04d474cdd6d3da5c469d9ca00ce9e1.tar.gz sharkey-504ff4c2af04d474cdd6d3da5c469d9ca00ce9e1.tar.bz2 sharkey-504ff4c2af04d474cdd6d3da5c469d9ca00ce9e1.zip | |
increase page size for most admin lists - #491
Since I can't quite figure out how to prevent `MkPagination` from
truncating the lists too eagerly, I'm going to hide the problem by
making it truncate _less_.
Diffstat (limited to 'packages/frontend/src/components/MkFileListForAdmin.vue')
| -rw-r--r-- | packages/frontend/src/components/MkFileListForAdmin.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkFileListForAdmin.vue b/packages/frontend/src/components/MkFileListForAdmin.vue index f3305e9f54..bab844c27f 100644 --- a/packages/frontend/src/components/MkFileListForAdmin.vue +++ b/packages/frontend/src/components/MkFileListForAdmin.vue @@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only <template> <div> - <MkPagination v-slot="{items}" :pagination="pagination" class="urempief" :class="{ grid: viewMode === 'grid' }"> + <MkPagination v-slot="{items}" :pagination="pagination" :displayLimit="50" class="urempief" :class="{ grid: viewMode === 'grid' }"> <MkA v-for="file in (items as Misskey.entities.DriveFile[])" :key="file.id" |