feat: Show assignee name in folders view (#3933)

This commit is contained in:
Pranav Raj S 2022-02-08 10:38:14 +05:30 committed by GitHub
parent e2ff1b1a15
commit 7b2ff2f112
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);