diff --git a/client/src/pages/learningPath/learningContentPage/assignment/AssignmentView.vue b/client/src/pages/learningPath/learningContentPage/assignment/AssignmentView.vue index 4a8ce8b4..f5771ce4 100644 --- a/client/src/pages/learningPath/learningContentPage/assignment/AssignmentView.vue +++ b/client/src/pages/learningPath/learningContentPage/assignment/AssignmentView.vue @@ -54,6 +54,10 @@ const upsertAssignmentCompletionMutation = useMutation( UPSERT_ASSIGNMENT_COMPLETION_MUTATION ); +// FIXME daniel: `useRouteQuery` from usevue is currently the reason that we have to +// fix the version of @vueuse/router and @vueuse/core to 10.1.0 +// it fails with version 10.2.0. I have a reminder to check out the situation +// at the end of July 2023 // 0 = introduction, 1 - n = tasks, n+1 = submission const stepIndex = useRouteQuery("step", "0", { transform: Number, mode: "push" });