Skip to content

Commit

Permalink
Fix settings active state in right menu
Browse files Browse the repository at this point in the history
  • Loading branch information
svk31 committed Dec 5, 2017
1 parent 8430764 commit b7cc3ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/Layout/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ class Header extends React.Component {
<div className="table-cell"><Translate content="modal.withdraw.submit" /></div>
</li>

<li className={cnames({active: active.indexOf("/settings") !== -1}), "divider"} onClick={this._onNavigate.bind(this, "/settings")}>
<li className={cnames({active: active.indexOf("/settings") !== -1}, "divider")} onClick={this._onNavigate.bind(this, "/settings")}>
<div className="table-cell"><Icon size="2x" name="cogs" /></div>
<div className="table-cell"><Translate content="header.settings" /></div>
</li>
Expand Down

0 comments on commit b7cc3ce

Please sign in to comment.