Browse Source

spv login enter key fix

v0.25
pbca26 7 years ago
parent
commit
428fa8240e
  1. 3
      react/src/components/login/login.js

3
react/src/components/login/login.js

@ -465,7 +465,8 @@ class Login extends React.Component {
handleKeydown(e) {
this.updateLoginPassPhraseInput(e);
if (e.key === 'Enter') {
if (e.key === 'Enter' &&
this.state.loginPassphrase) {
this.loginSeed();
}
}

Loading…
Cancel
Save