Fix missing bottom navigation bar on mobile reports page (#6803)

* Fix missing bottom navigation bar on mobile reports page

Update route pattern from /reports to /reports/* to match nested routes

* Release notes

* Add release notes for version 6803

* Refactor reports route to include dashboardId parameter
This commit is contained in:
Matiss Janis Aboltins
2026-01-28 18:17:22 +01:00
committed by GitHub
parent 690e2d0871
commit ebf8e985ad
3 changed files with 7 additions and 4 deletions

View File

@@ -375,6 +375,7 @@ export function FinancesApp() {
<Route path="/accounts" element={<MobileNavTabs />} />
<Route path="/settings" element={<MobileNavTabs />} />
<Route path="/reports" element={<MobileNavTabs />} />
<Route path="/reports/:dashboardId" element={<MobileNavTabs />} />
<Route path="/bank-sync" element={<MobileNavTabs />} />
<Route path="/rules" element={<MobileNavTabs />} />
<Route path="/payees" element={<MobileNavTabs />} />

View File

@@ -12,7 +12,3 @@
border-right: 2px solid var(--color-pageTextLight);
border-bottom: 2px solid var(--color-pageTextLight);
}
.react-grid-item:hover {
z-index: 1000 !important;
}

View File

@@ -0,0 +1,6 @@
---
category: Bugfixes
authors: [MatissJanis]
---
Mobile: show bottom nav bar in the reports page