Skip to content

Commit

Permalink
Merge pull request #1114 from offtherailz/i1112
Browse files Browse the repository at this point in the history
Fix #1112. Fix issues with ManagerMenu that kill debugger
  • Loading branch information
MV88 authored Oct 10, 2016
2 parents 9bef5f0 + 3f23a16 commit 12d265f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/client/plugins/manager/ManagerMenu.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const ManagerMenu = React.createClass({
getTools() {
return [{element: <span key="burger-menu-title">{this.props.title}</span>}, ...this.props.entries.sort((a, b) => a.position - b.position).map((entry) => {
return {
action: (context) => {context.router.push(entry.path); },
action: (context) => {context.router.push(entry.path); return {type: "MANAGER_MENU::SELECT_TOOL"}; },
text: entry.msgId ? <Message msgId={entry.msgId} /> : entry.text,
cfg: {...entry}
};
Expand Down

0 comments on commit 12d265f

Please sign in to comment.