From d2ae80dd210866f3ebff49351ae1aaa7eb30df2b Mon Sep 17 00:00:00 2001 From: syuilo <Syuilotan@yahoo.co.jp> Date: Fri, 22 Sep 2023 21:09:14 +0900 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20=E3=83=AA=E3=82=A2=E3=82=AF?= =?UTF-8?q?=E3=82=B7=E3=83=A7=E3=83=B3=E4=B8=80=E8=A6=A7=E3=81=8C=E7=A8=AE?= =?UTF-8?q?=E5=88=A5=E3=81=94=E3=81=A8=E3=81=AB=E3=83=95=E3=82=A3=E3=83=AB?= =?UTF-8?q?=E3=82=BF=E3=81=A7=E3=81=8D=E3=81=AA=E3=81=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix #11865 --- packages/frontend/src/components/MkNoteDetailed.vue | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/packages/frontend/src/components/MkNoteDetailed.vue b/packages/frontend/src/components/MkNoteDetailed.vue index 0bcf98cca2..94c6833b14 100644 --- a/packages/frontend/src/components/MkNoteDetailed.vue +++ b/packages/frontend/src/components/MkNoteDetailed.vue @@ -158,11 +158,13 @@ SPDX-License-Identifier: AGPL-3.0-only <span style="margin-left: 4px;">{{ appearNote.reactions[reaction] }}</span> </button> </div> - <MkPagination :pagination="reactionsPagination"> + <MkPagination v-if="reactionTabType" :key="reactionTabType" :pagination="reactionsPagination"> <template #default="{ items }"> - <MkA v-for="item in items" :key="item.id" :to="userPage(item.user)"> - <MkUserCardMini :user="item.user" :withChart="false"/> - </MkA> + <div class="_gaps_s"> + <MkA v-for="item in items" :key="item.id" :to="userPage(item.user)"> + <MkUserCardMini :user="item.user" :withChart="false"/> + </MkA> + </div> </template> </MkPagination> </div>