(data)
| 65 | } |
| 66 | |
| 67 | onClick (data) { |
| 68 | // check if event |
| 69 | data = data.hasOwnProperty('_dispatchListeners') ? this.props.data : data; |
| 70 | if (this.props.onClick) { |
| 71 | this.props.onClick(data); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | updateStatus () { |
| 76 | let status; |
no outgoing calls
no test coverage detected