Fixed crash on login input change
这个提交包含在:
父节点
b66e50eaf8
当前提交
98168b560b
共有 1 个文件被更改,包括 1 次插入 和 0 次删除
|
|
@ -56,6 +56,7 @@ class LoginScreen extends React.Component<Props, State> {
|
||||||
|
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
this.passwordInputRef = React.createRef();
|
||||||
this.onEmailChange = this.onInputChange.bind(this, true);
|
this.onEmailChange = this.onInputChange.bind(this, true);
|
||||||
this.onPasswordChange = this.onInputChange.bind(this, false);
|
this.onPasswordChange = this.onInputChange.bind(this, false);
|
||||||
this.props.navigation.addListener('focus', this.onScreenFocus);
|
this.props.navigation.addListener('focus', this.onScreenFocus);
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用