diff --git a/src/table/table-row.jsx b/src/table/table-row.jsx index 8fcd1b0ed56590..a5912c1a215e71 100644 --- a/src/table/table-row.jsx +++ b/src/table/table-row.jsx @@ -162,7 +162,7 @@ const TableRow = React.createClass({ }, _onRowClick(e) { - if (this.props.onRowClick) this.props.onRowClick(e, this.props.rowNumber); + if (this.props.selectable && this.props.onRowClick) this.props.onRowClick(e, this.props.rowNumber); }, _onRowHover(e) {