Merge remote-tracking branch 'origin/develop' into small-fixes-and-improvements
This commit is contained in:
commit
f21d1dbac8
4 changed files with 68 additions and 2 deletions
|
|
@ -381,7 +381,11 @@ const PostStatusForm = {
|
|||
},
|
||||
},
|
||||
defaultQuotable() {
|
||||
if (!this.quotingAvailable || !this.isReply) {
|
||||
if (
|
||||
!this.quotingAvailable ||
|
||||
!this.isReply ||
|
||||
!useMergedConfigStore().mergedConfig.quoteReply
|
||||
) {
|
||||
return false
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ library.add(faEllipsisH)
|
|||
|
||||
const StatusActionButtons = {
|
||||
props: ['status', 'replying'],
|
||||
emits: ['toggleReplying'],
|
||||
emits: ['toggleReplying', 'onSuccess', 'onError'],
|
||||
data() {
|
||||
return {
|
||||
showPin: false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue