diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2023-04-11 06:49:19 +0000 |
|---|---|---|
| committer | tamaina <tamaina@hotmail.co.jp> | 2023-04-11 06:49:19 +0000 |
| commit | 35613fd6423014f9a9640dd702e9e202db7105b0 (patch) | |
| tree | 1b6a1b33ca19a579d7d24d92fef4bfb05ae1e86e /packages | |
| parent | Update CHANGELOG.md (diff) | |
| download | misskey-35613fd6423014f9a9640dd702e9e202db7105b0.tar.gz misskey-35613fd6423014f9a9640dd702e9e202db7105b0.tar.bz2 misskey-35613fd6423014f9a9640dd702e9e202db7105b0.zip | |
fix(client): noPaging: true with gallery/featured
Diffstat (limited to '')
| -rw-r--r-- | packages/frontend/src/pages/gallery/index.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/gallery/index.vue b/packages/frontend/src/pages/gallery/index.vue index de8f448da1..fc9cc7ae9e 100644 --- a/packages/frontend/src/pages/gallery/index.vue +++ b/packages/frontend/src/pages/gallery/index.vue @@ -66,7 +66,7 @@ const recentPostsPagination = { }; const popularPostsPagination = { endpoint: 'gallery/featured' as const, - limit: 5, + noPaging: true, }; const myPostsPagination = { endpoint: 'i/gallery/posts' as const, |