e849759e15
Co-authored-by: Fayaz Ahmed <15716057+fayazara@users.noreply.github.com>
22 lines
418 B
JavaScript
22 lines
418 B
JavaScript
import { mapGetters } from 'vuex';
|
|
|
|
export default {
|
|
computed: {
|
|
...mapGetters({ teams: 'teams/getTeams' }),
|
|
hasAnAssignedTeam() {
|
|
return !!this.currentChat?.meta?.team;
|
|
},
|
|
teamsList() {
|
|
if (this.hasAnAssignedTeam) {
|
|
return [
|
|
{
|
|
id: 0,
|
|
name: 'None',
|
|
},
|
|
...this.teams,
|
|
];
|
|
}
|
|
return this.teams;
|
|
},
|
|
},
|
|
};
|