[BUGFIX] Fix issue with missing onChange prop for selection checkbox

This commit is contained in:
Jeremy Nagel 2018-07-16 11:18:02 +10:00
parent 2585a62697
commit f35d644608

View File

@ -77,6 +77,7 @@ export default class SelectionHeaderCell extends Component {
{ ...this.props }
checked={ checked }
indeterminate={ indeterminate }
onChange={ this.handleCheckBoxClick }
/>
);
attrs.onClick = this.handleCheckBoxClick;