feat: Show assignee name in folders view (#3933)
This commit is contained in:
parent
e2ff1b1a15
commit
7b2ff2f112
1 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue