From 0f6663ef63ddcf3a4e9f455ed84f0f2259957dfc Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Wed, 22 Oct 2025 13:00:28 +0200 Subject: [PATCH] Fix Vorstand page - load config data directly from API response --- pages/vorstand.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/vorstand.vue b/pages/vorstand.vue index e4fadf8..4ff3cf1 100644 --- a/pages/vorstand.vue +++ b/pages/vorstand.vue @@ -133,7 +133,7 @@ const config = ref(null) const loadConfig = async () => { try { const response = await $fetch('/api/config') - config.value = response.config + config.value = response } catch (error) { console.error('Fehler beim Laden der Config:', error) }