diff --git a/app/javascript/dashboard/components/ChatList.vue b/app/javascript/dashboard/components/ChatList.vue index 74b0b9f75..4173ed438 100644 --- a/app/javascript/dashboard/components/ChatList.vue +++ b/app/javascript/dashboard/components/ChatList.vue @@ -245,7 +245,10 @@ export default { }); }, showAssigneeInConversationCard() { - return this.activeAssigneeTab === wootConstants.ASSIGNEE_TYPE.ALL; + return ( + this.hasAppliedFiltersOrActiveFolders || + this.activeAssigneeTab === wootConstants.ASSIGNEE_TYPE.ALL + ); }, inbox() { return this.$store.getters['inboxes/getInbox'](this.activeInbox);