Skip to content

Commit

Permalink
fix(client): リスト、クリップが無限ロードされる現象の解決 (#10538)
Browse files Browse the repository at this point in the history
* fix my-list infinite items loading

* update CHANGELOG.md

* fix my-clip infinite items loading
  • Loading branch information
tai-cha authored Apr 8, 2023
1 parent b7ed3dd commit f794f3a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

### Client
- PWA時の絵文字ピッカーの位置をホームバーに重ならないように調整
- リスト管理の画面でリストが無限に読み込まれる問題を修正
- 自分のクリップが無限に読み込まれる問題を修正

### Server
- 通知読み込みでエラーが発生する場合がある問題を修正
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/pages/my-clips/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import { clipsCache } from '@/cache';
const pagination = {
endpoint: 'clips/list' as const,
noPaging: true,
limit: 10,
};
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/pages/my-lists/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ const pagingComponent = $shallowRef<InstanceType<typeof MkPagination>>();
const pagination = {
endpoint: 'users/lists/list' as const,
noPaging: true,
limit: 10,
};
Expand Down

0 comments on commit f794f3a

Please sign in to comment.