From 3d7d68c1bd24c5d65fca43d69bf7547945ac52e9 Mon Sep 17 00:00:00 2001 From: Muhsin Keloth Date: Mon, 1 Apr 2024 11:25:51 +0530 Subject: [PATCH] feat: Add assignee name --- .../dashboard/i18n/locale/en/report.json | 10 ++++++++- .../dashboard/settings/reports/SLAReports.vue | 6 +++--- .../reports/components/SLA/SLAReportItem.vue | 9 +++++--- .../reports/components/SLA/SLATable.vue | 21 ++++++++++++------- 4 files changed, 32 insertions(+), 14 deletions(-) diff --git a/app/javascript/dashboard/i18n/locale/en/report.json b/app/javascript/dashboard/i18n/locale/en/report.json index 6afd5cddd..2c967a091 100644 --- a/app/javascript/dashboard/i18n/locale/en/report.json +++ b/app/javascript/dashboard/i18n/locale/en/report.json @@ -508,7 +508,8 @@ }, "SLA_REPORTS": { "HEADER": "SLA Reports", - "METRICS":{ + "NO_RECORDS": "There are no SLA reports available.", + "METRICS": { "HIT_RATE": { "LABEL": "Hit Rate", "TOOLTIP": "Percentage of SLAs created were completed successfully" @@ -517,6 +518,13 @@ "LABEL": "Number of Breaches", "TOOLTIP": "The total SLA breaches in a certain period." } + }, + "TABLE": { + "HEADER": { + "POLICY_BREACHED": "Policy breached", + "CONVERSATION": "Conversation", + "AGENT": "Agent" + } } } } diff --git a/app/javascript/dashboard/routes/dashboard/settings/reports/SLAReports.vue b/app/javascript/dashboard/routes/dashboard/settings/reports/SLAReports.vue index 1271d4e63..5437181b6 100644 --- a/app/javascript/dashboard/routes/dashboard/settings/reports/SLAReports.vue +++ b/app/javascript/dashboard/routes/dashboard/settings/reports/SLAReports.vue @@ -1,6 +1,6 @@