diff options
| author | GrapeApple0 <84321396+GrapeApple0@users.noreply.github.com> | 2023-12-26 21:40:27 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-26 21:40:27 +0900 |
| commit | 6855079811401be883167476726644e5730ea792 (patch) | |
| tree | c014508869071f474235f08e81a02770d9a56170 /packages/frontend/src/pages/my-lists | |
| parent | fix(backend): 非センシティブのみ(リモートはいいねのみ)... (diff) | |
| download | misskey-6855079811401be883167476726644e5730ea792.tar.gz misskey-6855079811401be883167476726644e5730ea792.tar.bz2 misskey-6855079811401be883167476726644e5730ea792.zip | |
refactor: paginationの型を明示する (#12809)
* refactor: paginationの型を明示する
* asではなくsatisfiesを使うように
Diffstat (limited to 'packages/frontend/src/pages/my-lists')
| -rw-r--r-- | packages/frontend/src/pages/my-lists/list.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/pages/my-lists/list.vue b/packages/frontend/src/pages/my-lists/list.vue index cf9da02868..98d3c80ac2 100644 --- a/packages/frontend/src/pages/my-lists/list.vue +++ b/packages/frontend/src/pages/my-lists/list.vue @@ -68,7 +68,7 @@ import MkInput from '@/components/MkInput.vue'; import { userListsCache } from '@/cache.js'; import { $i } from '@/account.js'; import { defaultStore } from '@/store.js'; -import MkPagination from '@/components/MkPagination.vue'; +import MkPagination, { Paging } from '@/components/MkPagination.vue'; const { enableInfiniteScroll, @@ -88,7 +88,7 @@ const membershipsPagination = { params: computed(() => ({ listId: props.listId, })), -}; +} satisfies Paging; function fetchList() { os.api('users/lists/show', { |