diff options
-rw-r--r-- | modern/src/components/SideNav.js | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/modern/src/components/SideNav.js b/modern/src/components/SideNav.js index 669c79ad..8bd43ac2 100644 --- a/modern/src/components/SideNav.js +++ b/modern/src/components/SideNav.js @@ -1,12 +1,5 @@ import React from 'react'; -import { - List, - ListItem, - ListItemText, - ListItemIcon, - Divider, - ListSubheader -} from '@material-ui/core'; +import { List, ListItem, ListItemText, ListItemIcon, Divider, ListSubheader } from '@material-ui/core'; import { Link, useLocation } from 'react-router-dom'; const SideNav = ({ routes }) => { @@ -27,7 +20,7 @@ const SideNav = ({ routes }) => { key={route.href || route.subheader} button to={route.href} - selected={route.href === location.pathname} + selected={location.pathname.match(route.match || route.href)} > <ListItemIcon>{route.icon}</ListItemIcon> <ListItemText primary={route.name} /> |