Skip to content

Commit

Permalink
fix asc/desc table icons
Browse files Browse the repository at this point in the history
  • Loading branch information
dauglyon committed Aug 13, 2024
1 parent 0e4f3c8 commit b1d934f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/components/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ const TableHeader = <Datum,>({ table }: { table: TableType<Datum> }) => (
>
<FAIcon
icon={
{ asc: faCaretDown, desc: faCaretUp }[
{ asc: faCaretUp, desc: faCaretDown }[
header.column.getIsSorted() as string
] ?? faSort
}
Expand Down

0 comments on commit b1d934f

Please sign in to comment.