diff --git a/frontend/src/components/MenuBar.vue b/frontend/src/components/MenuBar.vue index f5da8863..6f13ddff 100644 --- a/frontend/src/components/MenuBar.vue +++ b/frontend/src/components/MenuBar.vue @@ -7,7 +7,11 @@ const isTeacher = route.path.includes("teacher"); const role = isTeacher ? "teacher" : "student"; - const name = "Bob Debouwer"; // TODO: naam opvragen + const name = "Kurt Cobain"; //TODO: naam opvragen + const initials = name + .split(" ") + .map((n) => n[0]) + .join(""); const userId = computed(() => route.params.id as string); @@ -15,46 +19,66 @@ @@ -62,6 +86,17 @@