(prevProps)
| 110 | } |
| 111 | |
| 112 | componentDidUpdate(prevProps) { |
| 113 | const { focused, isFocused } = this.props; |
| 114 | if (prevProps.focused === focused && prevProps.isFocused === isFocused) return; |
| 115 | |
| 116 | if (focused && isFocused) { |
| 117 | this.inputRef.focus(); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | onChange(e) { |
| 122 | const { onChange, onKeyDownQuestionMark } = this.props; |
no outgoing calls
no test coverage detected