diff options
| author | おさむのひと <46447427+samunohito@users.noreply.github.com> | 2024-10-05 14:37:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-05 14:37:52 +0900 |
| commit | 0d7d1091c8970d9979e8efb02f0accd6dcd39422 (patch) | |
| tree | c76208e6b85a579f414a2fd7cac1bc1bb51f67ef /packages/frontend/src/pages/flash | |
| parent | #14675 レビューの修正 (#14705) (diff) | |
| download | misskey-0d7d1091c8970d9979e8efb02f0accd6dcd39422.tar.gz misskey-0d7d1091c8970d9979e8efb02f0accd6dcd39422.tar.bz2 misskey-0d7d1091c8970d9979e8efb02f0accd6dcd39422.zip | |
enhance: 人気のPlayを10件以上表示できるように (#14443)
Co-authored-by: osamu <46447427+sam-osamu@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src/pages/flash')
| -rw-r--r-- | packages/frontend/src/pages/flash/flash-index.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/flash/flash-index.vue b/packages/frontend/src/pages/flash/flash-index.vue index f63a799365..2b85489706 100644 --- a/packages/frontend/src/pages/flash/flash-index.vue +++ b/packages/frontend/src/pages/flash/flash-index.vue @@ -55,7 +55,8 @@ const tab = ref('featured'); const featuredFlashsPagination = { endpoint: 'flash/featured' as const, - noPaging: true, + limit: 5, + offsetMode: true, }; const myFlashsPagination = { endpoint: 'flash/my' as const, |