From 6d08d6ea0129d721b31ea0a45f274d0a23cdb3cc Mon Sep 17 00:00:00 2001 From: AzuTear Date: Wed, 17 Jun 2026 13:37:14 +0200 Subject: [PATCH] Remove admin summary banner --- frontend/src/views/admin/AdminLayoutView.vue | 38 ++++++-------------- 1 file changed, 11 insertions(+), 27 deletions(-) diff --git a/frontend/src/views/admin/AdminLayoutView.vue b/frontend/src/views/admin/AdminLayoutView.vue index a17738f..ed4570a 100644 --- a/frontend/src/views/admin/AdminLayoutView.vue +++ b/frontend/src/views/admin/AdminLayoutView.vue @@ -20,7 +20,6 @@ const navItems = [ ] const currentSeason = computed(() => store.adminSeasonDetail) -const currentNavItem = computed(() => navItems.find((item) => route.path === item.to) ?? navItems[0]) const seasonSummary = computed(() => [ { label: 'Kategorien', value: currentSeason.value.categories.length }, { label: 'Kandidaten', value: currentSeason.value.candidates.length }, @@ -34,32 +33,7 @@ onMounted(async () => {