diff options
Diffstat (limited to 'modern/src/reports/components')
-rw-r--r-- | modern/src/reports/components/ReportsMenu.jsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modern/src/reports/components/ReportsMenu.jsx b/modern/src/reports/components/ReportsMenu.jsx index 76564e11..a45a4500 100644 --- a/modern/src/reports/components/ReportsMenu.jsx +++ b/modern/src/reports/components/ReportsMenu.jsx @@ -90,12 +90,14 @@ const ReportsMenu = () => { title={t('sharedLogs')} link="/reports/logs" icon={<NotesIcon />} + selected={location.pathname === '/reports/logs'} /> {!readonly && ( <MenuItem title={t('reportScheduled')} link="/reports/scheduled" icon={<EventRepeatIcon />} + selected={location.pathname === '/reports/scheduled'} /> )} {admin && ( |