chore: maxCwTextLengthをただのconstにする
This commit is contained in:
parent
7f9f55620d
commit
a9a8d1fd4b
|
@ -248,9 +248,7 @@ const cwTextLength = computed((): number => {
|
||||||
return cw.value?.length ?? 0;
|
return cw.value?.length ?? 0;
|
||||||
});
|
});
|
||||||
|
|
||||||
const maxCwTextLength = computed((): number => {
|
const maxCwTextLength = 100;
|
||||||
return 100;
|
|
||||||
});
|
|
||||||
|
|
||||||
const canPost = computed((): boolean => {
|
const canPost = computed((): boolean => {
|
||||||
return !props.mock && !posting.value && !posted.value &&
|
return !props.mock && !posting.value && !posted.value &&
|
||||||
|
|
Loading…
Reference in New Issue