diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-12-13 18:16:15 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-13 18:16:15 +0900 |
| commit | 6fa4eb8c4f9b25283553353d7015ab6080e927da (patch) | |
| tree | 727c90ff06e2dd97576ae4c9d51fbf06ac1b417d /packages/frontend/src/components/MkNoteDetailed.vue | |
| parent | Bump version to 2025.12.1-alpha.0 (diff) | |
| download | misskey-6fa4eb8c4f9b25283553353d7015ab6080e927da.tar.gz misskey-6fa4eb8c4f9b25283553353d7015ab6080e927da.tar.bz2 misskey-6fa4eb8c4f9b25283553353d7015ab6080e927da.zip | |
fix(frontend): 無限スクロールできる箇所の調整 (#16979)
Diffstat (limited to 'packages/frontend/src/components/MkNoteDetailed.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNoteDetailed.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkNoteDetailed.vue b/packages/frontend/src/components/MkNoteDetailed.vue index bc30360821..25a55d2d90 100644 --- a/packages/frontend/src/components/MkNoteDetailed.vue +++ b/packages/frontend/src/components/MkNoteDetailed.vue @@ -190,7 +190,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkNoteSub v-for="note in replies" :key="note.id" :note="note" :class="$style.reply" :detail="true"/> </div> <div v-else-if="tab === 'renotes'" :class="$style.tab_renotes"> - <MkPagination :paginator="renotesPaginator"> + <MkPagination :paginator="renotesPaginator" :forceDisableInfiniteScroll="true"> <template #default="{ items }"> <div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); grid-gap: 12px;"> <MkA v-for="item in items" :key="item.id" :to="userPage(item.user)"> @@ -207,7 +207,7 @@ SPDX-License-Identifier: AGPL-3.0-only <span style="margin-left: 4px;">{{ $appearNote.reactions[reaction] }}</span> </button> </div> - <MkPagination v-if="reactionTabType" :key="reactionTabType" :paginator="reactionsPaginator"> + <MkPagination v-if="reactionTabType" :key="reactionTabType" :paginator="reactionsPaginator" :forceDisableInfiniteScroll="true"> <template #default="{ items }"> <div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); grid-gap: 12px;"> <MkA v-for="item in items" :key="item.id" :to="userPage(item.user)"> |