From e784832a87226928ea4b7677383c4411b8b378fb Mon Sep 17 00:00:00 2001 From: rene Date: Sun, 19 Apr 2026 09:44:19 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20Sidebar=20schlie=C3=9Ft=20beim=20Klick?= =?UTF-8?q?=20auf=20'+=20Neu=20erstellen'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/static/js/app.js | 3 ++- backend/static/sw.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/backend/static/js/app.js b/backend/static/js/app.js index f65326f..5ead6f9 100644 --- a/backend/static/js/app.js +++ b/backend/static/js/app.js @@ -3,7 +3,7 @@ Router, State-Management, Navigation, Initialisierung. ============================================================ */ -const APP_VER = '202'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen +const APP_VER = '203'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen const App = (() => { @@ -286,6 +286,7 @@ const App = (() => { // + Button (Mobile Bottom-Nav + Desktop Sidebar) if (e.target.closest('#nav-add') || e.target.closest('#sidebar-add')) { + _closeSidebar(); _showQuickAdd(); return; } diff --git a/backend/static/sw.js b/backend/static/sw.js index a76fde9..50f1e75 100644 --- a/backend/static/sw.js +++ b/backend/static/sw.js @@ -3,7 +3,7 @@ Offline-Cache + Push Notifications + Tile-Cache ============================================================ */ -const CACHE_VERSION = 'by-v225'; +const CACHE_VERSION = 'by-v226'; const CACHE_STATIC = `${CACHE_VERSION}-static`; const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten