Skip to content
Snippets Groups Projects
Commit 2c932468 authored by syuilo's avatar syuilo
Browse files

Tweak note collapse threshold

parent 360c820b
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment