diff --git a/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue b/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue
index ad9661ea7..8617e66b5 100644
--- a/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue
+++ b/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue
@@ -118,14 +118,11 @@ export default {
type: String,
default: '',
},
- allowSignature: {
- type: Boolean,
- default: false,
- },
- allowEmoji: {
- type: Boolean,
- default: false,
- },
+ allowSignature: { type: Boolean, default: false },
+ allowEmoji: { type: Boolean, default: false },
+ allowAiAssist: { type: Boolean, default: false },
+ allowVideoCall: { type: Boolean, default: false },
+ allowAudioRecorder: { type: Boolean, default: false },
},
emits: [
'replaceText',
@@ -233,7 +230,7 @@ export default {
}
},
showMessageSignatureButton() {
- return !this.isOnPrivateNote && this.allowSignature;
+ return !this.isOnPrivateNote;
},
sendWithSignature() {
// channelType is sourced from inboxMixin
@@ -304,36 +301,40 @@ export default {
sm
/>
+
+
+
+
+
-
-
-