diff --git a/app/javascript/ui/MessageList.vue b/app/javascript/ui/MessageList.vue index 88f5cd60999..d12f253984a 100644 --- a/app/javascript/ui/MessageList.vue +++ b/app/javascript/ui/MessageList.vue @@ -72,7 +72,10 @@ const fetchMore = async () => { onMounted(async () => { await store.dispatch('inboxes/get'); - await store.dispatch('getConversation', conversationId.value); + await Promise.all([ + store.dispatch('getConversation', conversationId.value), + store.dispatch('fetchAllAttachments', conversationId.value), + ]); }); watch(conversation, () => {