From cefc836c3383bd32bc548371795e22dc00db1d05 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 7 Jul 2025 10:33:27 +0000 Subject: [PATCH] frontend: Load all required components for the Login view Signed-off-by: Michael Tremer --- frontend/src/views/LoginView.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/views/LoginView.vue b/frontend/src/views/LoginView.vue index 41b5f457..461bce35 100644 --- a/frontend/src/views/LoginView.vue +++ b/frontend/src/views/LoginView.vue @@ -14,8 +14,10 @@ const auth = useAuth(); // Import components + import Container from "@/components/Container.vue"; import Icon from "@/components/Icon.vue"; - import Notification from "../components/Notification.vue" + import Notification from "@/components/Notification.vue"; + import Section from "@/components/Section.vue"; // Error string shown to the user in case something went wrong const error = ref(null) -- 2.47.2