Fix login in edge

Using the button in edge resulted in a page reload and therefore you
couldn't login.
This commit is contained in:
Jannis Mattheis 2018-04-08 17:09:28 +02:00 committed by Jannis Mattheis
parent bdfde6f25d
commit 9bcaf35e99
1 changed files with 4 additions and 1 deletions

View File

@ -18,7 +18,10 @@ class Login extends Component {
this.setState(state);
}
login = () => UserAction.login(this.state.username, this.state.password);
login = (e) => {
e.preventDefault();
UserAction.login(this.state.username, this.state.password);
};
render() {
const {username, password} = this.state;