()
| 88 | } |
| 89 | |
| 90 | clearFilter () { |
| 91 | this.setState({ filters: [], resultText: '' }); |
| 92 | this.close(); |
| 93 | if (this.props.onFilter) { |
| 94 | this.props.onFilter([]); |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | onChange (index, filter) { |
| 99 | let filters = this.state.filters, |
nothing calls this directly
no test coverage detected
searching dependent graphs…