summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/my-clips
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-06-25 20:26:20 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-06-25 20:26:20 +0900
commiteee9a5f85310ea7042e42e6bc40ecff3b682d9fd (patch)
tree28bdc85a6824a57c8a39a0feb7af2e051e7485cd /packages/frontend/src/pages/my-clips
parentBump version to 2025.6.4-alpha.0 (diff)
downloadmisskey-eee9a5f85310ea7042e42e6bc40ecff3b682d9fd.tar.gz
misskey-eee9a5f85310ea7042e42e6bc40ecff3b682d9fd.tar.bz2
misskey-eee9a5f85310ea7042e42e6bc40ecff3b682d9fd.zip
enhance(frontend): ページネーションの並び順を逆にできるように
Diffstat (limited to 'packages/frontend/src/pages/my-clips')
-rw-r--r--packages/frontend/src/pages/my-clips/index.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/my-clips/index.vue b/packages/frontend/src/pages/my-clips/index.vue
index c386ed7239..4477edf505 100644
--- a/packages/frontend/src/pages/my-clips/index.vue
+++ b/packages/frontend/src/pages/my-clips/index.vue
@@ -12,7 +12,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<div v-if="tab === 'my'" class="_gaps">
<MkButton primary rounded class="add" @click="create"><i class="ti ti-plus"></i> {{ i18n.ts.add }}</MkButton>
- <MkPagination v-slot="{ items }" ref="pagingComponent" :pagination="pagination" class="_gaps">
+ <MkPagination v-slot="{ items }" ref="pagingComponent" :pagination="pagination" class="_gaps" withControl>
<MkClipPreview v-for="item in items" :key="item.id" :clip="item" :noUserInfo="true"/>
</MkPagination>
</div>