Fix missing translations, enable dutch language (#878)

* Fix missing translations, enable dutch language
This commit is contained in:
Pranav Raj S
2020-05-19 19:05:10 +05:30
committed by GitHub
parent 3f5ce2ddbf
commit 8af200ad20
16 changed files with 216 additions and 107 deletions

View File

@@ -13,11 +13,12 @@
<script>
import GroupedAvatars from 'widget/components/GroupedAvatars.vue';
import { getAvailableAgentsText } from 'widget/helpers/utils';
import agentMixin from '../mixins/agentMixin';
export default {
name: 'AvailableAgents',
components: { GroupedAvatars },
mixins: [agentMixin],
props: {
agents: {
type: Array,
@@ -37,7 +38,7 @@ export default {
}));
},
title() {
return getAvailableAgentsText(this.agents);
return this.getAvailableAgentsText(this.agents);
},
},
};