diff --git a/client/src/components/header/MainNavigationBar.vue b/client/src/components/header/MainNavigationBar.vue index 64e9a6fe..33d264cb 100644 --- a/client/src/components/header/MainNavigationBar.vue +++ b/client/src/components/header/MainNavigationBar.vue @@ -22,7 +22,6 @@ import { getLearningPathUrl, getMediaCenterUrl, } from "@/utils/utils"; -import { useMentorTexts } from "@/composables"; log.debug("MainNavigationBar created"); @@ -123,7 +122,11 @@ const hasLearningMentor = computed(() => { return courseSession.actions.includes("learning-mentor"); }); -const mentorTabTitle = useMentorTexts().mentorTabTitle; +const mentorTabTitle = computed(() => + courseSessionsStore.currentCourseSession?.course.configuration.is_uk + ? "a.Praxisbildner" + : "a.Lernbegleitung" +);