From eb6f1e4031d9f421718ebadda4d103fd6da32716 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 4 Oct 2023 15:51:48 +0530 Subject: [PATCH] feat: allow reply to for outgoing messages too --- .../dashboard/components/widgets/conversation/Message.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/javascript/dashboard/components/widgets/conversation/Message.vue b/app/javascript/dashboard/components/widgets/conversation/Message.vue index a68faffb1..fdfed419c 100644 --- a/app/javascript/dashboard/components/widgets/conversation/Message.vue +++ b/app/javascript/dashboard/components/widgets/conversation/Message.vue @@ -274,8 +274,7 @@ export default { copy: this.hasText, delete: this.hasText || this.hasAttachments, cannedResponse: this.isOutgoing && this.hasText, - replyTo: - this.isIncoming && !this.data.private && this.inboxSupportsReply, + replyTo: !this.data.private && this.inboxSupportsReply, }; }, contentAttributes() {