diff --git a/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue b/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue index bfea8c86c..003784afb 100644 --- a/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue +++ b/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue @@ -18,7 +18,7 @@ size="40px" />
- + {{ inboxName }} @@ -161,7 +161,11 @@ export default { }, showInboxName() { - return !this.hideInboxName && this.isInboxNameVisible; + return ( + !this.hideInboxName && + this.isInboxNameVisible && + this.inboxesList.length > 1 + ); }, inboxName() { const stateInbox = this.chatInbox;