()
| 66 | } |
| 67 | |
| 68 | close () { |
| 69 | let options = this.refs.options; |
| 70 | options.parentNode.style.overflow = 'hidden'; |
| 71 | this.setState({ active: false }); |
| 72 | this.unbindClickAway(); |
| 73 | setTimeout(() => { |
| 74 | options.style.display = 'none'; |
| 75 | }, 450); |
| 76 | } |
| 77 | |
| 78 | addFilter () { |
| 79 | let filters = this.state.filters; |
nothing calls this directly
no test coverage detected
searching dependent graphs…