diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-12-30 10:03:57 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-12-30 10:03:57 +0900 |
| commit | 2c93246860c0e659d8ef3ff7d2aeb519ba2d0222 (patch) | |
| tree | 23638618b33afbfd306badbffb43d4bb0c894af3 /src/client/components | |
| parent | Resolve #3620 (diff) | |
| download | sharkey-2c93246860c0e659d8ef3ff7d2aeb519ba2d0222.tar.gz sharkey-2c93246860c0e659d8ef3ff7d2aeb519ba2d0222.tar.bz2 sharkey-2c93246860c0e659d8ef3ff7d2aeb519ba2d0222.zip | |
Tweak note collapse threshold
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/note.vue | 4 |
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); |