diff --git a/packages/client/src/components/note.vue b/packages/client/src/components/note.vue index d554865aa..e6a35fe41 100644 --- a/packages/client/src/components/note.vue +++ b/packages/client/src/components/note.vue @@ -165,7 +165,7 @@ const reactButton = ref(); let appearNote = $computed(() => isRenote ? note.renote as misskey.entities.Note : note); const isMyRenote = $i && ($i.id === note.userId); const showContent = ref(false); -const isLong = ref(appearNote.cw == null && appearNote.text != null && ( +const isLong = (appearNote.cw == null && appearNote.text != null && ( (appearNote.text.split('\n').length > 9) || (appearNote.text.length > 500) ));