Skip to content

Commit 6fa4eb8

Browse files
fix(frontend): 無限スクロールできる箇所の調整 (#16979)
1 parent 5fb4caa commit 6fa4eb8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/frontend/src/components/MkNoteDetailed.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ SPDX-License-Identifier: AGPL-3.0-only
190190
<MkNoteSub v-for="note in replies" :key="note.id" :note="note" :class="$style.reply" :detail="true"/>
191191
</div>
192192
<div v-else-if="tab === 'renotes'" :class="$style.tab_renotes">
193-
<MkPagination :paginator="renotesPaginator">
193+
<MkPagination :paginator="renotesPaginator" :forceDisableInfiniteScroll="true">
194194
<template #default="{ items }">
195195
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); grid-gap: 12px;">
196196
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">
@@ -207,7 +207,7 @@ SPDX-License-Identifier: AGPL-3.0-only
207207
<span style="margin-left: 4px;">{{ $appearNote.reactions[reaction] }}</span>
208208
</button>
209209
</div>
210-
<MkPagination v-if="reactionTabType" :key="reactionTabType" :paginator="reactionsPaginator">
210+
<MkPagination v-if="reactionTabType" :key="reactionTabType" :paginator="reactionsPaginator" :forceDisableInfiniteScroll="true">
211211
<template #default="{ items }">
212212
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); grid-gap: 12px;">
213213
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">

0 commit comments

Comments
 (0)