Use event value for username blur

This commit is contained in:
J. Ryan Stinnett 2019-01-30 11:25:47 -06:00
parent eafd7e12d0
commit 9a17181f2c

View file

@ -131,7 +131,7 @@ class PasswordLogin extends React.Component {
} }
onUsernameBlur(ev) { onUsernameBlur(ev) {
this.props.onUsernameBlur(this.state.username); this.props.onUsernameBlur(ev.target.value);
} }
onLoginTypeChange(loginType) { onLoginTypeChange(loginType) {