From 45a4b69ca35585264c63d5f3c85479597190149e Mon Sep 17 00:00:00 2001 From: Lucas Date: Tue, 21 Mar 2023 21:46:15 +0000 Subject: [PATCH] backend: move tag media count outside of link --- templates/tags.html.ep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/tags.html.ep b/templates/tags.html.ep index db9676d..0f290c5 100644 --- a/templates/tags.html.ep +++ b/templates/tags.html.ep @@ -2,6 +2,6 @@

% for my $t ($tags->@*) { - <%= link_to "$t->{name} ($t->{count})" => $t->{uri} %> + <%= link_to $t->{name} => $t->{uri} %>(<%= $t->{count} %>) % }