@@ -216,7 +216,7 @@ class BootstrapTable extends Component {
216
216
replace = replace || this . props . replace ;
217
217
218
218
if ( ! nextProps . data ) {
219
- return ;
219
+ return ;
220
220
}
221
221
this . store . setData ( nextProps . data . slice ( ) ) ;
222
222
@@ -464,7 +464,8 @@ class BootstrapTable extends Component {
464
464
keyBoardNav = { this . props . keyBoardNav }
465
465
onNavigateCell = { this . handleNavigateCell }
466
466
x = { this . state . x }
467
- y = { this . state . y } />
467
+ y = { this . state . y }
468
+ withoutTabIndex = { this . props . withoutTabIndex } />
468
469
</ div >
469
470
{ tableFilter }
470
471
{ showPaginationOnBottom ? pagination : null }
@@ -1440,6 +1441,7 @@ BootstrapTable.propTypes = {
1440
1441
condensed : PropTypes . bool ,
1441
1442
pagination : PropTypes . bool ,
1442
1443
printable : PropTypes . bool ,
1444
+ withoutTabIndex : PropTypes . bool ,
1443
1445
keyBoardNav : PropTypes . oneOfType ( [ PropTypes . bool , PropTypes . object ] ) ,
1444
1446
searchPlaceholder : PropTypes . string ,
1445
1447
selectRow : PropTypes . shape ( {
@@ -1605,6 +1607,7 @@ BootstrapTable.defaultProps = {
1605
1607
condensed : false ,
1606
1608
pagination : false ,
1607
1609
printable : false ,
1610
+ withoutTabIndex : false ,
1608
1611
keyBoardNav : false ,
1609
1612
searchPlaceholder : undefined ,
1610
1613
selectRow : {
0 commit comments