Remove unnecessary imperative blur invocations on NewOrganization inputs

pull/2180/head
Jared Scheib 2017-11-09 23:35:46 -08:00
parent 396dbfd8c6
commit 7fa2d57c55
1 changed files with 0 additions and 2 deletions

View File

@ -21,11 +21,9 @@ class NewOrganization extends Component {
if (e.key === 'Escape') {
onCancelCreateOrganization()
this.inputRef.blur()
}
if (e.key === 'Enter') {
this.handleClickSave()
this.inputRef.blur()
}
}