From b952608eeb48cdcd962540d5829554e13de1a4a8 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 4 Oct 2023 15:52:17 +0530 Subject: [PATCH] feat: disable reply to for all --- .../dashboard/components/widgets/conversation/Message.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/javascript/dashboard/components/widgets/conversation/Message.vue b/app/javascript/dashboard/components/widgets/conversation/Message.vue index fdfed419c..dec478299 100644 --- a/app/javascript/dashboard/components/widgets/conversation/Message.vue +++ b/app/javascript/dashboard/components/widgets/conversation/Message.vue @@ -274,7 +274,8 @@ export default { copy: this.hasText, delete: this.hasText || this.hasAttachments, cannedResponse: this.isOutgoing && this.hasText, - replyTo: !this.data.private && this.inboxSupportsReply, + replyTo: false, + // replyTo: !this.data.private && this.inboxSupportsReply, }; }, contentAttributes() {