Rename component

This commit is contained in:
Ramon Wenger 2024-10-21 17:29:30 +02:00
parent 45a102c73a
commit bd24eace63
2 changed files with 2 additions and 5 deletions

View File

@ -6,7 +6,7 @@ import { getMediaCenterUrl } from "@/utils/utils";
import log from "loglevel"; import log from "loglevel";
import { computed, onMounted } from "vue"; import { computed, onMounted } from "vue";
import CourseSessionNavigation from "./CourseSessionNavigation.vue"; import CourseSessionNavigation from "./CourseSessionNavigation.vue";
import DefaultNavigation from "./DefaultNavigation.vue"; import HomeNavigation from "./HomeNavigation.vue";
import MobileMenuButton from "./MobileMenuButton.vue"; import MobileMenuButton from "./MobileMenuButton.vue";
import NotificationButton from "./NotificationButton.vue"; import NotificationButton from "./NotificationButton.vue";
import ProfileMenuButton from "./ProfileMenuButton.vue"; import ProfileMenuButton from "./ProfileMenuButton.vue";
@ -42,10 +42,7 @@ onMounted(() => {
<div class="relative flex h-16 justify-between"> <div class="relative flex h-16 justify-between">
<MobileMenuButton /> <MobileMenuButton />
<div class="flex flex-1 items-stretch justify-start"> <div class="flex flex-1 items-stretch justify-start">
<DefaultNavigation /> <HomeNavigation />
<!-- Satisfy the type checker; these menu items are
only relevant if there is a current course session -->
<CourseSessionNavigation /> <CourseSessionNavigation />
</div> </div>