Skip to content

Commit

Permalink
feat: add last name
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuseduardomedeiros committed Dec 20, 2024
1 parent 600d161 commit a0447eb
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 a0447eb

Please sign in to comment.