mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
Use event value for username blur
This commit is contained in:
parent
eafd7e12d0
commit
9a17181f2c
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ class PasswordLogin extends React.Component {
|
|||
}
|
||||
|
||||
onUsernameBlur(ev) {
|
||||
this.props.onUsernameBlur(this.state.username);
|
||||
this.props.onUsernameBlur(ev.target.value);
|
||||
}
|
||||
|
||||
onLoginTypeChange(loginType) {
|
||||
|
|
Loading…
Reference in a new issue