diff --git a/frontend/src/pages/CallLog.vue b/frontend/src/pages/CallLog.vue index 200f3fca..8f9250e5 100644 --- a/frontend/src/pages/CallLog.vue +++ b/frontend/src/pages/CallLog.vue @@ -256,6 +256,7 @@ const breadcrumbs = computed(() => { const statusLabelMap = { Completed: 'Completed', + Initiated: 'Initiated', Busy: 'Declined', Failed: 'Failed', Queued: 'Queued', @@ -269,6 +270,7 @@ const statusColorMap = { Completed: 'green', Busy: 'orange', Failed: 'red', + Initiated: 'gray', Queued: 'gray', Cancelled: 'gray', Ringing: 'gray', diff --git a/frontend/src/pages/CallLogs.vue b/frontend/src/pages/CallLogs.vue index d5e3e20c..afe4a68f 100644 --- a/frontend/src/pages/CallLogs.vue +++ b/frontend/src/pages/CallLogs.vue @@ -119,6 +119,7 @@ const rows = computed(() => { const statusLabelMap = { Completed: 'Completed', + Initiated: 'Initiated', Busy: 'Declined', Failed: 'Failed', Queued: 'Queued', @@ -132,6 +133,7 @@ const statusColorMap = { Completed: 'green', Busy: 'orange', Failed: 'red', + Initiated: 'gray', Queued: 'gray', Cancelled: 'gray', Ringing: 'gray',