feat(mobile-navigation-improvements): Complete US-207 - Actualizare MobileBottomNav cu link Setări

Implemented by Ralph autonomous loop.
Iteration: 9

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Claude Agent
2026-01-12 12:28:03 +00:00
parent a56b000b76
commit dc137711ae
11 changed files with 27 additions and 21 deletions

View File

@@ -144,9 +144,9 @@
<i class="pi pi-chart-bar"></i>
<span>Rapoarte</span>
</router-link>
<router-link to="/data-entry/ocr-metrics" class="sidebar-item">
<router-link to="/settings" class="sidebar-item">
<i class="pi pi-cog"></i>
<span>Setări OCR</span>
<span>Setări</span>
</router-link>
</div>
</Sidebar>
@@ -1086,9 +1086,9 @@ const moreMenuItems = computed(() => [
},
{ separator: true },
{
label: 'Setări OCR',
label: 'Setări',
icon: 'pi pi-cog',
command: () => router.push('/data-entry/ocr-metrics')
command: () => router.push('/settings')
}
])
@@ -1138,7 +1138,7 @@ const mobileBottomNavItems = computed(() => [
{ to: '/data-entry', icon: 'pi pi-receipt', label: 'Bonuri', active: true },
{ icon: 'pi pi-cloud-upload', label: 'Upload' }, // No 'to' - handled via item-click
{ to: '/reports/dashboard', icon: 'pi pi-chart-bar', label: 'Rapoarte' },
{ to: '/data-entry/ocr-metrics', icon: 'pi pi-cog', label: 'Setări' }
{ to: '/settings', icon: 'pi pi-cog', label: 'Setări' }
])
// US-103: Handle bottom nav clicks for items without routes