mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-13 10:25:44 +00:00
standardize i18n keys for consistency rename keys
fix: avatar url `null` console warnings.
This commit is contained in:
@@ -57,7 +57,7 @@
|
||||
<template #item="{ item }">
|
||||
<div class="flex items-center gap-2 ml-2">
|
||||
<Avatar v-if="action.type === 'assign_user'" class="w-7 h-7">
|
||||
<AvatarImage :src="item.avatar_url ?? ''" :alt="item.label.slice(0, 2)" />
|
||||
<AvatarImage :src="item.avatar_url || ''" :alt="item.label.slice(0, 2)" />
|
||||
<AvatarFallback>
|
||||
{{ item.label.slice(0, 2).toUpperCase() }}
|
||||
</AvatarFallback>
|
||||
@@ -123,7 +123,7 @@
|
||||
<div>
|
||||
<Button variant="outline" @click.prevent="addAction">{{
|
||||
$t('globals.messages.add', {
|
||||
name: $t('globals.entities.action')
|
||||
name: $t('globals.terms.action')
|
||||
})
|
||||
}}</Button>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user