mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 11:37:58 +00:00
11 lines
229 B
JavaScript
11 lines
229 B
JavaScript
export default {
|
|
computed: {
|
|
teamAvailabilityStatus() {
|
|
if (this.availableAgents.length) {
|
|
return this.$t('TEAM_AVAILABILITY.ONLINE');
|
|
}
|
|
return this.$t('TEAM_AVAILABILITY.OFFLINE');
|
|
},
|
|
},
|
|
};
|