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

View File

@@ -245,7 +245,10 @@ export default {
}); });
}, },
showAssigneeInConversationCard() { showAssigneeInConversationCard() {
return this.activeAssigneeTab === wootConstants.ASSIGNEE_TYPE.ALL; return (
this.hasAppliedFiltersOrActiveFolders ||
this.activeAssigneeTab === wootConstants.ASSIGNEE_TYPE.ALL
);
}, },
inbox() { inbox() {
return this.$store.getters['inboxes/getInbox'](this.activeInbox); return this.$store.getters['inboxes/getInbox'](this.activeInbox);