From 5e01de2d727be749cb60c0c1000831d53c4a395e Mon Sep 17 00:00:00 2001 From: Christian Cueni Date: Wed, 24 May 2023 07:29:40 +0200 Subject: [PATCH 1/4] Remove fake profile --- .../components/header/AccountMenuContent.vue | 3 -- client/src/pages/ProfilePage.vue | 51 ------------------- client/src/router/index.ts | 4 -- 3 files changed, 58 deletions(-) delete mode 100644 client/src/pages/ProfilePage.vue diff --git a/client/src/components/header/AccountMenuContent.vue b/client/src/components/header/AccountMenuContent.vue index 86cd540c..166ce523 100644 --- a/client/src/components/header/AccountMenuContent.vue +++ b/client/src/components/header/AccountMenuContent.vue @@ -26,9 +26,6 @@ const emit = defineEmits(["selectCourseSession", "logout"]);

{{ user.first_name }} {{ user.last_name }}

{{ user.email }}
-
- Profil anzeigen -
diff --git a/client/src/pages/ProfilePage.vue b/client/src/pages/ProfilePage.vue deleted file mode 100644 index 1c3e983a..00000000 --- a/client/src/pages/ProfilePage.vue +++ /dev/null @@ -1,51 +0,0 @@ - - - - - diff --git a/client/src/router/index.ts b/client/src/router/index.ts index f1d89417..d5a2f8ad 100644 --- a/client/src/router/index.ts +++ b/client/src/router/index.ts @@ -155,10 +155,6 @@ const router = createRouter({ path: "/messages", component: () => import("@/pages/MessagesPage.vue"), }, - { - path: "/profile", - component: () => import("@/pages/ProfilePage.vue"), - }, { path: "/settings", component: () => import("@/pages/SettingsPage.vue"), From b2e9873666cb49c0399f6c5903d7a362d6a7e6a5 Mon Sep 17 00:00:00 2001 From: Christian Cueni Date: Wed, 24 May 2023 08:14:03 +0200 Subject: [PATCH 2/4] Show plural of "Benachrichtigung" --- .../src/components/notifications/NotificationPopoverContent.vue | 2 +- client/src/pages/NotificationsPage.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/notifications/NotificationPopoverContent.vue b/client/src/components/notifications/NotificationPopoverContent.vue index 5ceca56b..21281e6b 100644 --- a/client/src/components/notifications/NotificationPopoverContent.vue +++ b/client/src/components/notifications/NotificationPopoverContent.vue @@ -4,7 +4,7 @@ import { PopoverButton } from "@headlessui/vue";