From c2b4dcba69121fac58b4d894c19a6fb23ca6096b Mon Sep 17 00:00:00 2001 From: Shawn Date: Wed, 20 May 2026 22:56:12 -0400 Subject: [PATCH] Add Navigate tab switching fix (389f1f1) --- Home.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Home.md b/Home.md index c1d1110..8e6c53e 100644 --- a/Home.md +++ b/Home.md @@ -63,6 +63,9 @@ Added 📍 GPS button next to `parking_location` field in both Add Asset and Edi ### Navigation Tool Tap "🧭 Navigate" on any asset detail view to draw a route line on the map from your current GPS position to the asset. Shows distance, cardinal direction, and a Google Maps link. Also accessible from map pin popups. +### Navigate Tab Switching Fix (May 2026) +Fixed a regression where the Navigate tab panel remained permanently visible after the first visit, overlapping any subsequent tab content. Root cause: `switchTab()` had an early `return` after `closeNavigate()` that skipped the actual tab panel DOM swap (slide animation, active class management). `closeNavigate()` only resets navigation state — it does not switch panels. Removed the early return so the normal tab switching logic runs after cleanup. Bottom tabs, More popover, and drawer nav all verified working in both directions. Commit 389f1f1. + ### Larger Camera Viewport ### Map Pins Fix