fix android crash on server url (#400)
This commit is contained in:
parent
23fa46fad6
commit
0c1cad8a7f
1 changed files with 3 additions and 1 deletions
|
|
@ -100,7 +100,9 @@ export default class SelectServer extends PureComponent {
|
|||
};
|
||||
|
||||
blur = () => {
|
||||
this.textInput.refs.wrappedInstance.blur();
|
||||
if (this.textInput) {
|
||||
this.textInput.refs.wrappedInstance.blur();
|
||||
}
|
||||
};
|
||||
|
||||
render() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue