From a1b98a253c2f40bb85d15624f6c3522d161133ac Mon Sep 17 00:00:00 2001 From: Muhsin Keloth Date: Tue, 3 Mar 2026 15:16:53 +0400 Subject: [PATCH] fix(ui): Show delivered state for Instagram external echo messages (#13700) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Instagram external echo messages were being saved with status: delivered, but the message meta UI did not treat Instagram as a channel eligible for delivered-state rendering. As a result, these messages fell back to progress and showed as “Sending”. This change updates the message status mapping in the new message UI to include Instagram in the delivered-state condition. --- app/javascript/dashboard/components-next/message/MessageMeta.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/app/javascript/dashboard/components-next/message/MessageMeta.vue b/app/javascript/dashboard/components-next/message/MessageMeta.vue index e633d7c3c..1b0947e6d 100644 --- a/app/javascript/dashboard/components-next/message/MessageMeta.vue +++ b/app/javascript/dashboard/components-next/message/MessageMeta.vue @@ -81,6 +81,7 @@ const isDelivered = computed(() => { isATwilioChannel.value || isASmsInbox.value || isAFacebookInbox.value || + isAnInstagramChannel.value || isATiktokChannel.value ) { return sourceId.value && status.value === MESSAGE_STATUS.DELIVERED;