Skip to content

Commit

Permalink
Merge pull request #571 from weni-ai/feat/add-last-name-in-chats-per-…
Browse files Browse the repository at this point in the history
…agent-table

[ENGAGE-2296] - Add last name in online agents table
  • Loading branch information
mateuseduardomedeiros authored Dec 20, 2024
2 parents 600d161 + a0447eb commit ca3fa10
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/dashboard/TableMetrics.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@
item.agent_status?.toLowerCase() === 'online' ? 'green' : 'grey'
}`"
/>
<p>{{ item.first_name }}</p>
<p :title="`${item.first_name} ${item.last_name}`">
{{ item.first_name }} {{ item.last_name }}
</p>
</span>
<span
class="table-col"
Expand Down Expand Up @@ -127,7 +129,6 @@ export default {
flex: 1 1;
&:last-of-type {
flex: 0 1 40%;
text-align: center;
}
}
Expand Down

0 comments on commit ca3fa10

Please sign in to comment.