fix: truncate contact name in deal contacts section

This commit is contained in:
Shariq Ansari 2023-11-27 13:51:04 +05:30
parent 78409c441a
commit 8819d7f290

View File

@ -155,7 +155,7 @@
class="flex cursor-pointer items-center justify-between gap-2 pr-1 text-base leading-5 text-gray-700" class="flex cursor-pointer items-center justify-between gap-2 pr-1 text-base leading-5 text-gray-700"
> >
<div <div
class="flex h-7 items-center gap-2" class="flex h-7 items-center gap-2 truncate"
@click="toggle()" @click="toggle()"
> >
<Avatar <Avatar
@ -163,7 +163,7 @@
:image="getContactByName(contact.name).image" :image="getContactByName(contact.name).image"
size="md" size="md"
/> />
{{ getContactByName(contact.name).full_name }} <div class="truncate">{{ getContactByName(contact.name).full_name }}</div>
<Badge <Badge
v-if="contact.is_primary" v-if="contact.is_primary"
class="ml-2" class="ml-2"