Skip to content

Commit

Permalink
fix(MenuExampleNameProp): fix activeItem logic (#1585)
Browse files Browse the repository at this point in the history
  • Loading branch information
levithomason authored Apr 16, 2017
1 parent a22183e commit 495ac52
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ export default class MenuExampleNameProp extends Component {
<Menu>
<Menu.Item
name='editorials'
active={activeItem === 'Editorials'}
active={activeItem === 'editorials'}
onClick={this.handleItemClick}
/>
<Menu.Item
name='reviews'
active={activeItem === 'Reviews'}
active={activeItem === 'reviews'}
onClick={this.handleItemClick}
/>
<Menu.Item
Expand Down

0 comments on commit 495ac52

Please sign in to comment.