diff --git a/app/javascript/dashboard/components/ChatList.vue b/app/javascript/dashboard/components/ChatList.vue index 3b35bb7a9..4244a599c 100644 --- a/app/javascript/dashboard/components/ChatList.vue +++ b/app/javascript/dashboard/components/ChatList.vue @@ -287,7 +287,7 @@ export default { ).map(({ key, count: countKey }) => ({ key, name: this.$t(`CHAT_LIST.ASSIGNEE_TYPE_TABS.${key}`), - count: this.hideAllChatsForAgents ? 0 : this.conversationStats[countKey] || 0, + count: this.conversationStats[countKey] || 0, })); }, showAssigneeInConversationCard() { @@ -385,9 +385,6 @@ export default { }, conversationList() { let conversationList = []; - if (this.hideAllChatsForAgents) { - return []; - } if (!this.hasAppliedFiltersOrActiveFolders) { const filters = this.conversationFilters; if (this.activeAssigneeTab === 'me') {