fix: added default tooltip if name/org is not set
This commit is contained in:
parent
71f876f5e3
commit
ada97f3c03
@ -64,7 +64,7 @@
|
||||
</div>
|
||||
</Tooltip>
|
||||
<div class="flex flex-col gap-2.5 truncate">
|
||||
<Tooltip :text="organization?.name">
|
||||
<Tooltip :text="organization?.name || __('Set an organization')">
|
||||
<div class="truncate text-2xl font-medium">
|
||||
{{ organization?.name || __('Untitled') }}
|
||||
</div>
|
||||
|
||||
@ -106,7 +106,7 @@
|
||||
</component>
|
||||
</div>
|
||||
<div class="flex flex-col gap-2.5 truncate">
|
||||
<Tooltip :text="lead.data.lead_name">
|
||||
<Tooltip :text="lead.data.lead_name || __('Set first name')">
|
||||
<div class="truncate text-2xl font-medium">
|
||||
{{ lead.data.lead_name || __('Untitled') }}
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user