fix(frontend): pure renote cannot create with url based quote (#14270)

* fix(frontend): pure renote cannot create with url based quote

* docs(changelog): update changelog
This commit is contained in:
Sayamame-beans
2024-07-30 17:23:29 +09:00
committed by GitHub
parent cb3106cdc6
commit f965f65dcd
2 changed files with 2 additions and 1 deletions

View File

@@ -259,7 +259,7 @@ const canPost = computed((): boolean => {
1 <= files.value.length ||
poll.value != null ||
props.renote != null ||
(props.reply != null && quoteId.value != null)
quoteId.value != null
) &&
(textLength.value <= maxTextLength.value) &&
(!poll.value || poll.value.choices.length >= 2);