(option)
| 48 | } |
| 49 | |
| 50 | selectOption(option) { |
| 51 | const { selectedOption } = this.props; |
| 52 | |
| 53 | this.close(); |
| 54 | |
| 55 | if (option !== selectedOption) { |
| 56 | this.emitOnOptionSelectedEvent(option); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | close() { |
| 61 | const { onClose } = this.props; |
no test coverage detected