aboutsummaryrefslogtreecommitdiffstats
path: root/src/renderer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/renderer.rs')
-rw-r--r--src/renderer.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/renderer.rs b/src/renderer.rs
index 5a591f0..3b62704 100644
--- a/src/renderer.rs
+++ b/src/renderer.rs
@@ -459,7 +459,7 @@ fn build_link(
) -> Markup {
let mut link = format!("?sort={name}&order=asc");
let mut help = format!("Sort by {name} in ascending order");
- let mut chevron = chevron_up();
+ let mut chevron = chevron_down();
let mut class = "";
if let Some(method) = sort_method {
@@ -469,7 +469,7 @@ fn build_link(
if order.to_string() == "asc" {
link = format!("?sort={name}&order=desc");
help = format!("Sort by {name} in descending order");
- chevron = chevron_down();
+ chevron = chevron_up();
}
}
}