summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-12-30 10:03:57 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-12-30 10:03:57 +0900
commit2c93246860c0e659d8ef3ff7d2aeb519ba2d0222 (patch)
tree23638618b33afbfd306badbffb43d4bb0c894af3 /src/client
parentResolve #3620 (diff)
downloadsharkey-2c93246860c0e659d8ef3ff7d2aeb519ba2d0222.tar.gz
sharkey-2c93246860c0e659d8ef3ff7d2aeb519ba2d0222.tar.bz2
sharkey-2c93246860c0e659d8ef3ff7d2aeb519ba2d0222.zip
Tweak note collapse threshold
Diffstat (limited to 'src/client')
-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);