Skip to content

Commit 4fb5cf3

Browse files
committed
Invert sorting icons
1 parent 7b48d91 commit 4fb5cf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ColumnWithToggleControls.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ const ColumnWithToggleControls = ({
6262
toggle.icon
6363
) : toggle.type === 'sort' ? (
6464
toggle.isActive ? (
65-
<ChevronUp className="w-3 h-3" />
66-
) : (
6765
<ChevronDown className="w-3 h-3" />
66+
) : (
67+
<ChevronUp className="w-3 h-3" />
6868
)
6969
) : null}
7070
{toggle.label && <span>{toggle.label}</span>}

0 commit comments

Comments
 (0)