diff --git a/frontend/src/pages/CallLog.vue b/frontend/src/pages/CallLog.vue
index 66d8a7e1..2cc0036e 100644
--- a/frontend/src/pages/CallLog.vue
+++ b/frontend/src/pages/CallLog.vue
@@ -35,9 +35,9 @@
@@ -245,6 +245,22 @@ const breadcrumbs = computed(() => [
route: { name: 'Call Log', params: { callLogId: props.callLogId } },
},
])
+
+const statusLabelMap = {
+ Completed: 'Completed',
+ Busy: 'Declined',
+ Ringing: 'Ringing',
+ 'No Answer': 'Missed Call',
+ 'In Progress': 'In Progress',
+}
+
+const statusColorMap = {
+ Completed: 'green',
+ Busy: 'orange',
+ Ringing: 'gray',
+ 'No Answer': 'red',
+ 'In Progress': 'blue',
+}