Use event value for username blur

pull/21833/head
J. Ryan Stinnett 2019-01-30 11:25:47 -06:00
parent eafd7e12d0
commit 9a17181f2c
1 changed files with 1 additions and 1 deletions

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) {