Skip to content

Commit b1d934f

Browse files
committed
fix asc/desc table icons
1 parent 0e4f3c8 commit b1d934f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/components/Table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ const TableHeader = <Datum,>({ table }: { table: TableType<Datum> }) => (
279279
>
280280
<FAIcon
281281
icon={
282-
{ asc: faCaretDown, desc: faCaretUp }[
282+
{ asc: faCaretUp, desc: faCaretDown }[
283283
header.column.getIsSorted() as string
284284
] ?? faSort
285285
}

0 commit comments

Comments
 (0)