Skip to content

Commit

Permalink
fix(styles): truncate class for some text elements
Browse files Browse the repository at this point in the history
  • Loading branch information
RitvikSardana committed Dec 11, 2024
1 parent 32ea138 commit c8f7c63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions desk/src/components/ticket/TicketCustomerSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
v-for="field in ticketBasicInfo"
>
<span class="w-[126px] text-sm text-gray-600">{{ field.label }}</span>
<span class="text-base text-gray-800">
<span class="text-base text-gray-800 flex-1">
{{ field.value }}
</span>
</div>
Expand Down Expand Up @@ -67,7 +67,7 @@
v-for="field in ticketAdditionalInfo"
>
<span class="w-[126px] text-sm text-gray-600">{{ field.label }}</span>
<span class="text-base text-gray-800">
<span class="text-base text-gray-800 flex-1">
{{ field.value }}
</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion desk/src/components/ticket/TicketsListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
{{ dayjs.tz(item).fromNow() }}
</Tooltip>
</div>
<div v-else-if="column.key === 'agent_group'">
<div v-else-if="column.key === 'agent_group'" class="truncate">
{{ item || "-" }}
</div>
<div v-else-if="column.key === 'resolution_by'">
Expand Down

0 comments on commit c8f7c63

Please sign in to comment.