85514cae8d
Fixes #1132
10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
export default {
|
|
computed: {
|
|
teamAvailabilityStatus() {
|
|
if (this.availableAgents.length) {
|
|
return this.$t('TEAM_AVAILABILITY.ONLINE');
|
|
}
|
|
return this.$t('TEAM_AVAILABILITY.OFFLINE');
|
|
},
|
|
},
|
|
};
|