fix collapsing long notes

This commit is contained in:
Johann150 2022-07-19 10:02:40 +02:00
parent e5f41ece7e
commit 27be5e0892
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1

View file

@ -165,7 +165,7 @@ const reactButton = ref<HTMLElement>();
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)
));