From 2c93246860c0e659d8ef3ff7d2aeb519ba2d0222 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 30 Dec 2020 10:03:57 +0900 Subject: [PATCH] Tweak note collapse threshold --- src/client/components/note.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/components/note.vue b/src/client/components/note.vue index 85b16cd8b..556fca1a1 100644 --- a/src/client/components/note.vue +++ b/src/client/components/note.vue @@ -278,8 +278,8 @@ export default defineComponent({ } this.collapsed = this.appearNote.text && ( - (this.appearNote.text.split('\n').length > 8) || - (this.appearNote.text.length > 300) + (this.appearNote.text.split('\n').length > 9) || + (this.appearNote.text.length > 500) ); this.muted = await checkWordMute(this.appearNote, this.$i, this.$store.state.mutedWords);