mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 05:35:11 +00:00
fix: 投稿フォームの字数上限計算を実際の投稿内容に合わせる (#14466)
This commit is contained in:
parent
44f62160cb
commit
255c8bd1b9
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ const submitText = computed((): string => {
|
|||
});
|
||||
|
||||
const textLength = computed((): number => {
|
||||
return (text.value + imeText.value).trim().length;
|
||||
return (text.value + imeText.value).length;
|
||||
});
|
||||
|
||||
const maxTextLength = computed((): number => {
|
||||
|
|
Loading…
Reference in a new issue