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 @@