Skip to content

Commit

Permalink
Merge branch 'feat/add-last-name-in-chats-per-agent-table' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuseduardomedeiros committed Dec 20, 2024
2 parents 3cc3551 + a0447eb commit 424f14a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ import { useQuickMessageShared } from './store/modules/chats/quickMessagesShared
import { useDashboard } from './store/modules/dashboard';
import initHotjar from '@/plugins/Hotjar';
import { getProject } from '@/utils/config';
import { setProject as setProjectLocalStorage } from '@/utils/config';
import {
getProject,
setProject as setProjectLocalStorage,
} from '@/utils/config';
import moment from 'moment';
export default {
Expand Down
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 424f14a

Please sign in to comment.