Skip to content

Commit

Permalink
Fix #1607. Removed wrong parameter for close action (#1626)
Browse files Browse the repository at this point in the history
  • Loading branch information
offtherailz authored and mbarto committed Mar 22, 2017
1 parent 19a0656 commit 9118f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/client/plugins/login/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const {Glyphicon} = require('react-bootstrap');

const closeLogin = () => {
return (dispatch) => {
dispatch(setControlProperty(null, 'LoginForm', 'enabled', false, false));
dispatch(setControlProperty('LoginForm', 'enabled', false));
dispatch(resetError());
};
};
Expand Down

0 comments on commit 9118f0f

Please sign in to comment.