Update MkPostForm.vue

This commit is contained in:
かっこかり 2024-12-14 20:43:36 +09:00 committed by GitHub
parent 5748229183
commit 85ee7142f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -251,7 +251,7 @@ const canPost = computed((): boolean => {
quoteId.value != null
) &&
(textLength.value <= maxTextLength.value) &&
(files.value.length > 16) &&
(files.value.length <= 16) &&
(!poll.value || poll.value.choices.length >= 2);
});