From a51769c8a802a8fbab3a450b3ebe9e6f6aacdc04 Mon Sep 17 00:00:00 2001 From: Alex Velez Date: Mon, 30 Sep 2024 15:43:40 -0500 Subject: [PATCH] Update learners label --- .../coach/assets/src/views/plan/QuizSummaryPage/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kolibri/plugins/coach/assets/src/views/plan/QuizSummaryPage/index.vue b/kolibri/plugins/coach/assets/src/views/plan/QuizSummaryPage/index.vue index 83bd1b70c0..36e0ea02ad 100644 --- a/kolibri/plugins/coach/assets/src/views/plan/QuizSummaryPage/index.vue +++ b/kolibri/plugins/coach/assets/src/views/plan/QuizSummaryPage/index.vue @@ -196,7 +196,7 @@ const tabsList = [ { id: QuizzesTabs.REPORT, - label: this.coachString('reportLabel'), + label: this.coachString('learnersLabel'), }, ]; @@ -209,7 +209,7 @@ } tabsList.forEach(tab => { - tab.to = this.classRoute('QuizSummaryPage', { quizId: this.quizId, tabId: tab.id }); + tab.to = this.classRoute('QuizSummaryPage', { tabId: tab.id }); }); return tabsList;