Skip to content

Commit

Permalink
Make id of help menu item unique. (#3635)
Browse files Browse the repository at this point in the history
This small change remedies the (copy & paste?) error of the help
dropdown in the navigation bar having the same id ('user-menu-dropdown')
as the actual user menu by changing it to 'help-menu-dropdown'.
  • Loading branch information
dennisoelkers authored and joschi committed Mar 17, 2017
1 parent c3983db commit 8ec556f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -11,7 +11,7 @@ const HelpMenu = React.createClass({
},
render() {
return (
<NavDropdown navItem title="Help" id="user-menu-dropdown" active={this.props.active}>
<NavDropdown navItem title="Help" id="help-menu-dropdown" active={this.props.active}>
<LinkContainer to={Routes.getting_started(true)}>
<MenuItem>Getting Started</MenuItem>
</LinkContainer>
Expand Down

0 comments on commit 8ec556f

Please sign in to comment.