Tweak note collapse threshold

This commit is contained in:
syuilo 2020-12-30 10:03:57 +09:00
parent 360c820b9d
commit 2c93246860
1 changed files with 2 additions and 2 deletions

View File

@ -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);