From ba1eaa169a71aec479fed564c0ff51037ae52ccc Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 4 Oct 2023 18:16:34 +0530 Subject: [PATCH] chore: revert flag condition to false --- .../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 d016c70a8..391149bd0 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.inboxSupportsReplyTo, + replyTo: false, + // replyTo: !this.data.private && this.inboxSupportsReplyTo, }; }, contentAttributes() {