set tabindex to 0 for table headers; fixes #955

This commit is contained in:
Bill Parrott
2019-06-03 09:26:15 -05:00
parent 60eb47dc9e
commit e31b5eb691

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;