Fixes use of 'Enter' key to save contact in address book modal (#6946)

feature/default_network_editable
Dan J Miller 5 years ago committed by Whymarrh Whitby
parent b7eae4ba80
commit 1b33d7fd4c
  1. 2
      ui/app/components/app/modals/add-to-addressbook-modal/add-to-addressbook-modal.component.js

@ -31,7 +31,7 @@ export default class AddToAddressBookModal extends Component {
}
onKeyPress = e => {
if (e.keyCode === 13 && this.state.alias) {
if (e.key === 'Enter' && this.state.alias) {
this.onSave()
}
}

Loading…
Cancel
Save