diff --git a/client/src/components/header/CourseSessionNavigation.vue b/client/src/components/header/CourseSessionNavigation.vue index 4ff81cd6..e756e5d2 100644 --- a/client/src/components/header/CourseSessionNavigation.vue +++ b/client/src/components/header/CourseSessionNavigation.vue @@ -10,11 +10,12 @@ import { } from "@/utils/utils"; import { useTranslation } from "i18next-vue"; import { computed } from "vue"; +import SelectedCourseSession from "./SelectedCourseSession.vue"; const { t } = useTranslation(); const courseSessionsStore = useCourseSessionsStore(); -const { inCockpit, inCompetenceProfile, inLearningMentor, inLearningPath } = +const { isInCockpit, inCompetenceProfile, inLearningMentor, inLearningPath } = useRouteLookups(); const { hasCompetenceNaviMenu, @@ -30,13 +31,17 @@ const mentorTabTitle = computed(() => );