Merge remote-tracking branch 'origin/develop' into small-fixes-and-improvements

This commit is contained in:
Henry Jameson 2026-05-13 16:14:41 +03:00
commit f21d1dbac8
4 changed files with 68 additions and 2 deletions

View file

@ -381,7 +381,11 @@ const PostStatusForm = {
},
},
defaultQuotable() {
if (!this.quotingAvailable || !this.isReply) {
if (
!this.quotingAvailable ||
!this.isReply ||
!useMergedConfigStore().mergedConfig.quoteReply
) {
return false
}

View file

@ -16,7 +16,7 @@ library.add(faEllipsisH)
const StatusActionButtons = {
props: ['status', 'replying'],
emits: ['toggleReplying'],
emits: ['toggleReplying', 'onSuccess', 'onError'],
data() {
return {
showPin: false,