From 2b11f96019322674b4a4182d865836103f4f1cad Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Wed, 13 Dec 2023 21:19:57 +0530 Subject: [PATCH] fix: show 0s if first responded on is set but time taken is 0 --- frontend/src/components/SLASection.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/SLASection.vue b/frontend/src/components/SLASection.vue index 9dd97133..fabddc7d 100644 --- a/frontend/src/components/SLASection.vue +++ b/frontend/src/components/SLASection.vue @@ -54,7 +54,7 @@ const { communicationStatuses } = statusesStore() let slaSection = computed(() => { let sections = [] - if (data.value.first_response_time) { + if (data.value.first_responded_on) { sections.push({ label: 'Fulfilled In', type: 'Duration',