1
0
forked from test/crm

chore: show U for Untitled in avatar if there is no title

This commit is contained in:
Shariq Ansari 2024-05-13 11:56:44 +05:30
parent 43b577918c
commit 150ec994fc
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@
<Avatar <Avatar
size="3xl" size="3xl"
class="size-12" class="size-12"
:label="organization?.name" :label="organization?.name || __('Untitled')"
:image="organization?.organization_logo" :image="organization?.organization_logo"
/> />
</div> </div>

View File

@ -67,7 +67,7 @@
<Avatar <Avatar
size="3xl" size="3xl"
class="size-12" class="size-12"
:label="lead.data.first_name" :label="lead.data.first_name || __('Untitled')"
:image="lead.data.image" :image="lead.data.image"
/> />
<component <component