backend: move tag media count outside of link

This commit is contained in:
Lucas 2023-03-21 21:46:15 +00:00
parent aa3e60d188
commit 45a4b69ca3
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
<p class="text-center">
% for my $t ($tags->@*) {
<%= link_to "$t->{name} ($t->{count})" => $t->{uri} %>
<%= link_to $t->{name} => $t->{uri} %>(<%= $t->{count} %>)
% }
</p>