(e)
| 353 | }, |
| 354 | |
| 355 | handleKeyDown(e){ |
| 356 | const {keyCode} = e; |
| 357 | const value = this.inputField().value; |
| 358 | this.setState({ |
| 359 | hasInput: true, |
| 360 | }); |
| 361 | |
| 362 | if (keyCode === BACKSPACE_KC && value === '') this.props.onSelectChange(); |
| 363 | e.target.style.width = (value.length + 1) * 12 + 'px'; |
| 364 | }, |
| 365 | |
| 366 | |
| 367 | handleBlur(){ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…