summaryrefslogtreecommitdiff
path: root/src/client/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/components')
-rw-r--r--src/client/components/note.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/note.vue b/src/client/components/note.vue
index 85b16cd8be..556fca1a1a 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);