mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-19 21:01:48 +08: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');
|
|
},
|
|
},
|
|
};
|