()
| 263 | }, |
| 264 | |
| 265 | triggerDropValueChange(){ |
| 266 | const {multi, onChange} = this.props; |
| 267 | let {value} = this.state; |
| 268 | if (multi) value = Object.assign([], value); |
| 269 | onChange(value); |
| 270 | }, |
| 271 | |
| 272 | toggleOpen(stat){ |
| 273 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…