Skip to content

Commit

Permalink
Merge pull request #1653 from gregnb/bugfix-wrong-props
Browse files Browse the repository at this point in the history
bugfix wrong props
  • Loading branch information
wdh2100 authored Feb 5, 2021
2 parents d5e39ec + a92d96a commit 4e442f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/TableHeadCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const TableHeadCell = ({

const sortLabelProps = {
classes: { root: classes.sortLabelRoot },
tabindex: -1,
tabIndex: -1,
active: sortActive,
hideSortIcon: true,
...(ariaSortDirection ? { direction: sortDirection } : {}),
Expand Down Expand Up @@ -206,7 +206,7 @@ const TableHeadCell = ({
<span className={classes.contentWrapper}>
<Tooltip
title={getTooltipTitle()}
placement="bottom-center"
placement="bottom"
open={sortTooltipOpen}
onOpen={() => (dragging ? setSortTooltipOpen(false) : setSortTooltipOpen(true))}
onClose={() => setSortTooltipOpen(false)}
Expand Down

0 comments on commit 4e442f9

Please sign in to comment.