From b94c89ebf1be7ae4a97700dc591915d958d060f8 Mon Sep 17 00:00:00 2001 From: Muhsin Keloth Date: Thu, 19 Oct 2023 13:22:19 +0530 Subject: [PATCH] fix: Show sent status for messenger channel (#8145) --- .../components/widgets/conversation/bubble/Actions.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/javascript/dashboard/components/widgets/conversation/bubble/Actions.vue b/app/javascript/dashboard/components/widgets/conversation/bubble/Actions.vue index 27eecdc4b..2e58bce10 100644 --- a/app/javascript/dashboard/components/widgets/conversation/bubble/Actions.vue +++ b/app/javascript/dashboard/components/widgets/conversation/bubble/Actions.vue @@ -201,7 +201,11 @@ export default { return !!this.sourceId; } - if (this.isAWhatsAppChannel || this.isATwilioChannel) { + if ( + this.isAWhatsAppChannel || + this.isATwilioChannel || + this.isAFacebookInbox + ) { return this.sourceId && this.isSent; } return false;