Skip to content
Snippets Groups Projects
Unverified Commit f794f3ad authored by taichan's avatar taichan Committed by GitHub
Browse files

fix(client): リスト、クリップが無限ロードされる現象の解決 (#10538)

* fix my-list infinite items loading

* update CHANGELOG.md

* fix my-clip infinite items loading
parent b7ed3ddf
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,8 @@
### Client
- PWA時の絵文字ピッカーの位置をホームバーに重ならないように調整
- リスト管理の画面でリストが無限に読み込まれる問題を修正
- 自分のクリップが無限に読み込まれる問題を修正
### Server
- 通知読み込みでエラーが発生する場合がある問題を修正
......
......@@ -32,6 +32,7 @@ import { clipsCache } from '@/cache';
const pagination = {
endpoint: 'clips/list' as const,
noPaging: true,
limit: 10,
};
......
......@@ -30,6 +30,7 @@ const pagingComponent = $shallowRef<InstanceType<typeof MkPagination>>();
const pagination = {
endpoint: 'users/lists/list' as const,
noPaging: true,
limit: 10,
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment