We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 997c1d0 commit 6bb7da0Copy full SHA for 6bb7da0
src/app/AppLayout/AppLayout.tsx
@@ -4,7 +4,6 @@ import {
4
Nav,
5
NavList,
6
NavItem,
7
- NavVariants,
8
Page,
9
PageHeader,
10
PageSidebar,
@@ -46,7 +45,7 @@ const AppLayout: React.FunctionComponent<IAppLayout> = ({children}) => {
46
45
47
const Navigation = (
48
<Nav id="nav-primary-simple" theme="dark">
49
- <NavList id="nav-list-simple" variant={NavVariants.default}>
+ <NavList id="nav-list-simple">
50
{routes.map((route, idx) => route.label && (
51
<NavItem key={`${route.label}-${idx}`} id={`${route.label}-${idx}`}>
52
<NavLink exact to={route.path} activeClassName="pf-m-current">{route.label}</NavLink>
0 commit comments