@@ -216,7 +216,7 @@ class BootstrapTable extends Component {
216216 replace = replace || this . props . replace ;
217217
218218 if ( ! nextProps . data ) {
219- return ;
219+ return ;
220220 }
221221 this . store . setData ( nextProps . data . slice ( ) ) ;
222222
@@ -464,7 +464,8 @@ class BootstrapTable extends Component {
464464 keyBoardNav = { this . props . keyBoardNav }
465465 onNavigateCell = { this . handleNavigateCell }
466466 x = { this . state . x }
467- y = { this . state . y } />
467+ y = { this . state . y }
468+ withoutTabIndex = { this . props . withoutTabIndex } />
468469 </ div >
469470 { tableFilter }
470471 { showPaginationOnBottom ? pagination : null }
@@ -1440,6 +1441,7 @@ BootstrapTable.propTypes = {
14401441 condensed : PropTypes . bool ,
14411442 pagination : PropTypes . bool ,
14421443 printable : PropTypes . bool ,
1444+ withoutTabIndex : PropTypes . bool ,
14431445 keyBoardNav : PropTypes . oneOfType ( [ PropTypes . bool , PropTypes . object ] ) ,
14441446 searchPlaceholder : PropTypes . string ,
14451447 selectRow : PropTypes . shape ( {
@@ -1605,6 +1607,7 @@ BootstrapTable.defaultProps = {
16051607 condensed : false ,
16061608 pagination : false ,
16071609 printable : false ,
1610+ withoutTabIndex : false ,
16081611 keyBoardNav : false ,
16091612 searchPlaceholder : undefined ,
16101613 selectRow : {
0 commit comments