Skip to content

Commit

Permalink
[OPIK-506] [UX improvements] Sort date columns by date (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
andriidudar authored Dec 2, 2024
1 parent 06910a8 commit 6ecd7bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const TypeHeader = <TData,>(context: HeaderContext<TData, unknown>) => {

if (!isSortable || (!direction && !nextDirection)) return null;

const Icon = (direction || nextDirection) === "asc" ? ArrowDown : ArrowUp;
const Icon = (direction || nextDirection) === "asc" ? ArrowUp : ArrowDown;
return (
<>
<Icon
Expand Down

0 comments on commit 6ecd7bc

Please sign in to comment.