This commit is contained in:
Henry Jameson 2026-05-13 16:12:52 +03:00
commit c05381e6aa
26 changed files with 81 additions and 54 deletions

View file

@ -378,13 +378,10 @@ const PostStatusForm = {
this.newStatus.hasQuote = value
this.newStatus.quote.thread = value
this.newStatus.quote.id = value ? this.replyTo : ''
}
},
},
defaultQuotable() {
if (
!this.quotingAvailable ||
!this.isReply
) {
if (!this.quotingAvailable || !this.isReply) {
return false
}

View file

@ -264,10 +264,10 @@
/>
<QuoteForm
v-if="quotingAvailable"
:id="newStatus.quote.id"
ref="quoteForm"
:visible="quoteFormVisible"
:url="newStatus.quote.url"
:id="newStatus.quote.id"
@update:url="url => newStatus.quote.url = url"
@update:id="id => newStatus.quote.id = id"
/>