diff options
| author | Sayamame-beans <61457993+Sayamame-beans@users.noreply.github.com> | 2024-07-30 17:23:29 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-30 17:23:29 +0900 |
| commit | f965f65dcd03fe93042d90a25fb3ad54b07baf4f (patch) | |
| tree | 03e63ac09927fff5b38b3fd4199c5ae997131e78 /packages/frontend/src/components/MkPostForm.vue | |
| parent | enhance(frontend): 連合の「連合中」,「購読中」,「配信中」... (diff) | |
| download | sharkey-f965f65dcd03fe93042d90a25fb3ad54b07baf4f.tar.gz sharkey-f965f65dcd03fe93042d90a25fb3ad54b07baf4f.tar.bz2 sharkey-f965f65dcd03fe93042d90a25fb3ad54b07baf4f.zip | |
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
Diffstat (limited to 'packages/frontend/src/components/MkPostForm.vue')
| -rw-r--r-- | packages/frontend/src/components/MkPostForm.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkPostForm.vue b/packages/frontend/src/components/MkPostForm.vue index 64ad60ae85..fa3e2b90b0 100644 --- a/packages/frontend/src/components/MkPostForm.vue +++ b/packages/frontend/src/components/MkPostForm.vue @@ -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); |