set tabindex to 0 for table headers; fixes #955 (#965)

This commit is contained in:
Bill Parrott 2019-06-05 07:13:35 -05:00 committed by Allen
parent 60eb47dc9e
commit 4ec02b294a

View File

@ -41,7 +41,7 @@ const HeaderCell = (props) => {
const cellAttrs = {
..._.isFunction(headerAttrs) ? headerAttrs(column, index) : headerAttrs,
...headerEvents,
tabIndex: index + 1
tabIndex: 0
};
let sortSymbol;