Skip to content

Commit

Permalink
Fix missing translation (#2132)
Browse files Browse the repository at this point in the history
  • Loading branch information
qwerty287 authored Aug 7, 2023
1 parent e17d0da commit 0ecaa70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/src/components/admin/settings/AdminAgentsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
<Badge v-if="agent.backend" :label="$t('admin.settings.agents.backend.badge')" :value="agent.backend" />
<Badge v-if="agent.capacity" :label="$t('admin.settings.agents.capacity.badge')" :value="agent.capacity" />
</span>
<span class="ml-2">{{ agent.last_contact ? timeAgo.format(agent.last_contact * 1000) : 'never' }}</span>
<span class="ml-2">{{
agent.last_contact ? timeAgo.format(agent.last_contact * 1000) : $t('admin.settings.agents.never')
}}</span>
</span>
<IconButton
icon="edit"
Expand Down

0 comments on commit 0ecaa70

Please sign in to comment.