From a9ca55343df6ea1679599acbc4801f78aa3a242b Mon Sep 17 00:00:00 2001 From: zyoshoka Date: Fri, 12 Jan 2024 16:05:27 +0900 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20`text`=E3=81=8C`null`=E3=81=A7?= =?UTF-8?q?=E3=81=82=E3=81=A3=E3=81=A6`renoteId`=E3=81=A8`replyId`?= =?UTF-8?q?=E3=81=8C`null`=E3=81=A7=E3=81=AA=E3=81=84=E3=82=88=E3=81=86?= =?UTF-8?q?=E3=81=AA=E3=83=8E=E3=83=BC=E3=83=88=E3=81=AF=E5=BC=95=E7=94=A8?= =?UTF-8?q?=E3=83=AA=E3=83=8E=E3=83=BC=E3=83=88=E3=81=A8=E3=81=97=E3=81=A6?= =?UTF-8?q?=E8=A1=A8=E7=A4=BA=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/components/MkNote.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue index 9c4354ef5f..2b7bf719e6 100644 --- a/packages/frontend/src/components/MkNote.vue +++ b/packages/frontend/src/components/MkNote.vue @@ -229,6 +229,7 @@ if (noteViewInterruptors.length > 0) { const isRenote = ( note.value.renote != null && + note.value.replyId == null && note.value.text == null && note.value.cw == null && note.value.fileIds.length === 0 &&