diff --git a/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue b/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue index 47fe01e9ce3..ad9661ea721 100644 --- a/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue +++ b/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue @@ -118,6 +118,14 @@ export default { type: String, default: '', }, + allowSignature: { + type: Boolean, + default: false, + }, + allowEmoji: { + type: Boolean, + default: false, + }, }, emits: [ 'replaceText', @@ -225,7 +233,7 @@ export default { } }, showMessageSignatureButton() { - return !this.isOnPrivateNote; + return !this.isOnPrivateNote && this.allowSignature; }, sendWithSignature() { // channelType is sourced from inboxMixin @@ -264,6 +272,7 @@ export default {