Skip to content

Commit

Permalink
fix: added initiated call status
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Jan 25, 2024
1 parent 171aa04 commit 6bdcc08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/pages/CallLog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ const breadcrumbs = computed(() => {
const statusLabelMap = {
Completed: 'Completed',
Initiated: 'Initiated',
Busy: 'Declined',
Failed: 'Failed',
Queued: 'Queued',
Expand All @@ -269,6 +270,7 @@ const statusColorMap = {
Completed: 'green',
Busy: 'orange',
Failed: 'red',
Initiated: 'gray',
Queued: 'gray',
Cancelled: 'gray',
Ringing: 'gray',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/pages/CallLogs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ const rows = computed(() => {
const statusLabelMap = {
Completed: 'Completed',
Initiated: 'Initiated',
Busy: 'Declined',
Failed: 'Failed',
Queued: 'Queued',
Expand All @@ -132,6 +133,7 @@ const statusColorMap = {
Completed: 'green',
Busy: 'orange',
Failed: 'red',
Initiated: 'gray',
Queued: 'gray',
Cancelled: 'gray',
Ringing: 'gray',
Expand Down

0 comments on commit 6bdcc08

Please sign in to comment.