Skip to content

Commit

Permalink
change order
Browse files Browse the repository at this point in the history
  • Loading branch information
Volene committed Aug 23, 2024
1 parent f8cbe42 commit d254a4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ export const MRT_TableHeadCell = <TData extends MRT_RowData>({
data-index={staticColumnIndex}
data-pinned={!!isColumnPinned || undefined}
data-allows-sorting={column.getCanSort()}
aria-sort={column.getIsSorted() ? (column.getIsSorted() === 'asc' ? 'ascending' : 'descending') : 'none'}
data-sort-direction={column.getIsSorted() === 'asc' ? 'ascending' : 'descending' ?? undefined}
aria-sort={column.getIsSorted() ? (column.getIsSorted() === 'asc' ? 'ascending' : 'descending') : 'none'}
onDragEnter={handleDragEnter}
onDragOver={handleDragOver}
ref={(node: HTMLTableCellElement) => {
Expand Down

0 comments on commit d254a4e

Please sign in to comment.