Skip to content

Commit 127b8e3

Browse files
committed
fix #1296
1 parent ce6f744 commit 127b8e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BootstrapTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ class BootstrapTable extends Component {
666666
handleRowClick = (row, rowIndex, columnIndex) => {
667667
const { options, keyBoardNav } = this.props;
668668
if (options.onRowClick) {
669-
options.onRowClick(row, columnIndex);
669+
options.onRowClick(row, columnIndex, rowIndex);
670670
}
671671
if (keyBoardNav) {
672672
let { clickToNav } = typeof keyBoardNav === 'object' ? keyBoardNav : {};

0 commit comments

Comments
 (0)