summaryrefslogtreecommitdiff
path: root/templates/displayheaders/_main_table.html.ep
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis@fehcom.de>2023-09-07 16:01:08 +0200
committerJannis M. Hoffmann <jannis@fehcom.de>2023-09-07 16:01:08 +0200
commit76933635af54fb97fdc8e592e074cc4e5a262f52 (patch)
tree7afded98134d2a633e188c3dafdb486c48fe9d49 /templates/displayheaders/_main_table.html.ep
parent2b5c10e8cd95e499cf96bcf234c1ceb7c8dd9dd5 (diff)
don't use smartmatch any longer
Diffstat (limited to 'templates/displayheaders/_main_table.html.ep')
-rw-r--r--templates/displayheaders/_main_table.html.ep2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/displayheaders/_main_table.html.ep b/templates/displayheaders/_main_table.html.ep
index e06e925..c88e125 100644
--- a/templates/displayheaders/_main_table.html.ep
+++ b/templates/displayheaders/_main_table.html.ep
@@ -3,7 +3,7 @@
%= link_to url_with->query(sort => $param eq (param('sort') || '') ? '!' . $param : $param) => begin
% no warnings qw(experimental::smartmatch);
- %= do { given (param('sort')) { '↑' when ($param); '↓' when ('!' . $param) } }
+ %= do { if (param('sort') eq '↑') { $param } elsif (param('sort') eq '↓') { '!' . $param } else { die } }
%= ucfirst l $param;
% end