mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
Bugfix :: Table sort not visible (#4408)
* bugfix :: table sort missing fix * bugfix :: sort triggering issue
This commit is contained in:
parent
0826c32302
commit
80a4df6022
2 changed files with 3 additions and 2 deletions
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -1890,7 +1890,7 @@ button {
|
|||
white-space: normal;
|
||||
}
|
||||
|
||||
th div:after {
|
||||
th:after {
|
||||
content: " ";
|
||||
position: relative;
|
||||
height: 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue