From 2186bb3a69b319284ef9d645fd19f2439720b8f4 Mon Sep 17 00:00:00 2001 From: Lars Date: Thu, 23 Apr 2026 09:00:28 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Admin-Navigation=20-=20Redirect=20/admin?= =?UTF-8?q?=20=E2=86=92=20/admin/catalogs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: Navigation-Link zeigte /admin, aber Route war /admin/catalogs Folge: Klick auf 'Admin' führte zu 404 (Catch-all Redirect zu /) Fix: Redirect-Route von /admin zu /admin/catalogs hinzugefügt version: 0.3.3 --- backend/version.py | 10 +++++++++- frontend/src/App.jsx | 4 ++++ frontend/src/version.js | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/backend/version.py b/backend/version.py index e9caa60..ecdb529 100644 --- a/backend/version.py +++ b/backend/version.py @@ -1,6 +1,6 @@ # Shinkan Jinkendo Version Information -APP_VERSION = "0.3.2" +APP_VERSION = "0.3.3" BUILD_DATE = "2026-04-23" DB_SCHEMA_VERSION = "20260423" @@ -22,6 +22,14 @@ MODULE_VERSIONS = { } CHANGELOG = [ + { + "version": "0.3.3", + "date": "2026-04-23", + "changes": [ + "Fix: Admin-Navigation - Redirect /admin → /admin/catalogs", + "Fix: Admin-Link funktioniert jetzt (vorher 404)" + ] + }, { "version": "0.3.2", "date": "2026-04-23", diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index b7ef534..1aa2455 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -177,6 +177,10 @@ function AppRoutes() { } /> + } + />