From 186d9e0457ed41a55fd7852c84f8528487cfb071 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Thu, 4 Jun 2026 13:06:22 +0530 Subject: [PATCH] feat: fetch teams and agents --- app/javascript/ui/MessageList.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/javascript/ui/MessageList.vue b/app/javascript/ui/MessageList.vue index 9ce26fdcf..b7998ce03 100644 --- a/app/javascript/ui/MessageList.vue +++ b/app/javascript/ui/MessageList.vue @@ -94,6 +94,9 @@ onMounted(async () => { await Promise.all([ store.dispatch('getConversation', conversationId.value), store.dispatch('fetchAllAttachments', conversationId.value), + // agents and teams power the @mention dropdown on private notes + store.dispatch('agents/get'), + store.dispatch('teams/get'), ]); await fetchConversationInbox();