()
| 203 | } |
| 204 | |
| 205 | renderFilter () { |
| 206 | if (this.props.filterAble) { |
| 207 | return ( |
| 208 | <div className="filter"> |
| 209 | <i className="search" /> |
| 210 | <input value={this.state.filter} |
| 211 | onChange={ (e) => this.setState({ filter: e.target.value }) } |
| 212 | type="text" /> |
| 213 | </div> |
| 214 | ); |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | render () { |
| 219 | let { className, fetchStatus, grid, readOnly, mult, placeholder, style } = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…