From a1457dfe5900bc6071d450ab58d60e1fa3bd8133 Mon Sep 17 00:00:00 2001 From: AllenFang Date: Sun, 19 May 2019 16:28:36 +0800 Subject: [PATCH] fix #929 --- packages/react-bootstrap-table2/src/header-cell.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/react-bootstrap-table2/src/header-cell.js b/packages/react-bootstrap-table2/src/header-cell.js index 1270082..773a939 100644 --- a/packages/react-bootstrap-table2/src/header-cell.js +++ b/packages/react-bootstrap-table2/src/header-cell.js @@ -40,7 +40,8 @@ const HeaderCell = (props) => { const cellAttrs = { ..._.isFunction(headerAttrs) ? headerAttrs(column, index) : headerAttrs, - ...headerEvents + ...headerEvents, + tabIndex: index + 1 }; let sortSymbol;