Bugfix :: Table sort not visible (#4408)

* bugfix :: table sort missing fix

* bugfix :: sort triggering issue
This commit is contained in:
Kiran Ashok 2022-10-14 11:28:12 +05:30 committed by GitHub
parent 0826c32302
commit 80a4df6022
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -670,12 +670,13 @@ export function Table({
return (
<th
key={index}
{...column.getHeaderProps(column.getSortByToggleProps())}
{...column.getHeaderProps()}
className={
column.isSorted ? (column.isSortedDesc ? 'sort-desc th' : 'sort-asc th') : 'th'
}
>
<div
{...column.getSortByToggleProps()}
{...provided.draggableProps}
{...provided.dragHandleProps}
// {...extraProps}

View file

@ -1890,7 +1890,7 @@ button {
white-space: normal;
}
th div:after {
th:after {
content: " ";
position: relative;
height: 0;