From 77af83c8bce8ec0ac11477cc002ed1f7c53fb931 Mon Sep 17 00:00:00 2001 From: Jacob Pierce Date: Thu, 14 Nov 2024 12:58:37 -0800 Subject: [PATCH] avoid redundant navigation errors --- .../assets/src/views/plan/CreateExamPage/CreateQuizSection.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue b/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue index 51176b83585..9bf7f3a0158 100644 --- a/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue +++ b/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue @@ -534,7 +534,7 @@ if (sectionIndex !== this.activeSectionIndex) { this.$router.push({ ...this.$route, - params: { ...this.getCurrentRouteParams(), sectionIndex }, + params: { ...this.$route.params, ...this.getCurrentRouteParams(), sectionIndex }, }); } },