Skip to content
This repository has been archived by the owner on Oct 24, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fopina committed Oct 8, 2019
1 parent b8c280b commit 41be0ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/src/components/header/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ export default class Header extends Component {
</TopAppBar.Section>
</TopAppBar.Row>
</TopAppBar>
<Drawer modal ref={this.drawerRef} tabindex={0}>
<Drawer modal ref={this.drawerRef}>
<Drawer.DrawerContent>
<Drawer.DrawerItem selected={props.selectedRoute === '/'} onClick={this.goHome}>
<Drawer.DrawerItem tabindex={0} selected={props.selectedRoute === '/'} onClick={this.goHome}>
<List.ItemGraphic>home</List.ItemGraphic>
Home
</Drawer.DrawerItem>
<Drawer.DrawerItem selected={props.selectedRoute === '/about'} onClick={this.goToAbout}>
<Drawer.DrawerItem tabindex={0} selected={props.selectedRoute === '/about'} onClick={this.goToAbout}>
<List.ItemGraphic>info</List.ItemGraphic>
About
</Drawer.DrawerItem>
Expand Down

0 comments on commit 41be0ee

Please sign in to comment.