diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-06-25 20:26:20 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-06-25 20:26:20 +0900 |
| commit | eee9a5f85310ea7042e42e6bc40ecff3b682d9fd (patch) | |
| tree | 28bdc85a6824a57c8a39a0feb7af2e051e7485cd /packages/frontend/src/pages/user/gallery.vue | |
| parent | Bump version to 2025.6.4-alpha.0 (diff) | |
| download | misskey-eee9a5f85310ea7042e42e6bc40ecff3b682d9fd.tar.gz misskey-eee9a5f85310ea7042e42e6bc40ecff3b682d9fd.tar.bz2 misskey-eee9a5f85310ea7042e42e6bc40ecff3b682d9fd.zip | |
enhance(frontend): ページネーションの並び順を逆にできるように
Diffstat (limited to 'packages/frontend/src/pages/user/gallery.vue')
| -rw-r--r-- | packages/frontend/src/pages/user/gallery.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/user/gallery.vue b/packages/frontend/src/pages/user/gallery.vue index 11874bfd87..12a9d2b1ab 100644 --- a/packages/frontend/src/pages/user/gallery.vue +++ b/packages/frontend/src/pages/user/gallery.vue @@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only <template> <div class="_spacer" style="--MI_SPACER-w: 700px;"> - <MkPagination v-slot="{items}" :pagination="pagination"> + <MkPagination v-slot="{items}" :pagination="pagination" withControl> <div :class="$style.root"> <MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/> </div> |