enhance(client): 添付ファイルが5つ以上あるときは折りたたむように

This commit is contained in:
syuilo 2023-02-11 10:25:33 +09:00
parent 8bd2d6328a
commit 4a0b0b135a
1 changed files with 2 additions and 1 deletions

View File

@ -188,7 +188,8 @@ const isMyRenote = $i && ($i.id === note.userId);
const showContent = ref(false);
const isLong = (appearNote.cw == null && appearNote.text != null && (
(appearNote.text.split('\n').length > 9) ||
(appearNote.text.length > 500)
(appearNote.text.length > 500) ||
(appearNote.files.length >= 5)
));
const collapsed = ref(appearNote.cw == null && isLong);
const isDeleted = ref(false);