feat: Add all filter for conversations (#3102)

This commit is contained in:
Pranav Raj S 2021-09-29 16:23:39 +05:30 committed by GitHub
parent d55a48037a
commit cc244833d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 81 additions and 22 deletions

View file

@ -26,6 +26,7 @@
:active-label="label"
:team-id="teamId"
:chat="chat"
:show-assignee="showAssigneeInConversationCard"
/>
<div v-if="chatListLoading" class="text-center">
@ -119,6 +120,9 @@ export default {
};
});
},
showAssigneeInConversationCard() {
return this.activeAssigneeTab === wootConstants.ASSIGNEE_TYPE.ALL;
},
inbox() {
return this.$store.getters['inboxes/getInbox'](this.activeInbox);
},