()
| 72 | } |
| 73 | |
| 74 | componentDidUpdate() { |
| 75 | if ( |
| 76 | this._element && |
| 77 | this._element.childNodes && |
| 78 | this._element.childNodes[0] && |
| 79 | this._element.childNodes[0].focus |
| 80 | ) { |
| 81 | this._element.childNodes[0].focus(); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | onClosed() { |
| 86 | this.props.onClosed(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…