mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-26 03:47:40 -07:00
Tweak note collapse threshold
This commit is contained in:
parent
279310f71c
commit
a8ddb134a1
1 changed files with 2 additions and 2 deletions
|
@ -278,8 +278,8 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
|
|
||||||
this.collapsed = this.appearNote.text && (
|
this.collapsed = this.appearNote.text && (
|
||||||
(this.appearNote.text.split('\n').length > 8) ||
|
(this.appearNote.text.split('\n').length > 9) ||
|
||||||
(this.appearNote.text.length > 300)
|
(this.appearNote.text.length > 500)
|
||||||
);
|
);
|
||||||
this.muted = await checkWordMute(this.appearNote, this.$i, this.$store.state.mutedWords);
|
this.muted = await checkWordMute(this.appearNote, this.$i, this.$store.state.mutedWords);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue