From 605a40848c2d1d9bb4041887977029f0a6957e17 Mon Sep 17 00:00:00 2001 From: Julian Krauser Date: Mon, 10 Feb 2025 11:34:12 +0100 Subject: [PATCH] change: refer to developer --- src/components/FormBottomBar.vue | 10 ++++------ src/views/Login.vue | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/components/FormBottomBar.vue b/src/components/FormBottomBar.vue index 8854d97..10174a9 100644 --- a/src/components/FormBottomBar.vue +++ b/src/components/FormBottomBar.vue @@ -6,15 +6,13 @@

{{ config.custom_login_message }}

- © - Admin-Portal - by + FF Admin + entwickelt von JK Effects

- \ No newline at end of file +import { config } from "@/config"; + diff --git a/src/views/Login.vue b/src/views/Login.vue index f38de6e..a11543e 100644 --- a/src/views/Login.vue +++ b/src/views/Login.vue @@ -84,7 +84,7 @@ export default defineComponent({ }) .catch((err) => { this.loginStatus = "failed"; - this.loginError = err.response.data; + this.loginError = err.response?.data; }); }, },