Skip to content

Commit

Permalink
Fix: Sort direction
Browse files Browse the repository at this point in the history
  • Loading branch information
sevonj committed Nov 18, 2024
1 parent 6883ef2 commit 9f124c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ fun <T : Enum<T>> MediaSortBar(
onClick = { onReverseChange(!reverse) }
) {
Icon(
if (reverse) Icons.Filled.ArrowUpward else Icons.Filled.ArrowDownward,
if (reverse) Icons.Filled.ArrowDownward else Icons.Filled.ArrowUpward,
null,
modifier = iconModifier,
)
Expand Down

0 comments on commit 9f124c3

Please sign in to comment.