aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-06-10 13:16:10 +0200
committerGitHub <noreply@github.com>2017-06-10 13:16:10 +0200
commitde9445cd2519ccb90ed891a35ad3c9ac5a990f71 (patch)
treeaf2e18e9da63f136823ec7a83a24926ecc7e45fa
parent679aaf08366c265b29d0e4b2e59919314cf338f9 (diff)
parenta9b984feeef84474add8a7c4a8e741816bf8f0e0 (diff)
downloadwallabag-de9445cd2519ccb90ed891a35ad3c9ac5a990f71.tar.gz
wallabag-de9445cd2519ccb90ed891a35ad3c9ac5a990f71.tar.zst
wallabag-de9445cd2519ccb90ed891a35ad3c9ac5a990f71.zip
Merge pull request #3203 from wallabag/fix-tag-count-baggy
Fix tags count in tags list on baggy
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig
index 1e2c6b42..7509918e 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig
@@ -9,7 +9,7 @@
9 9
10 <ul> 10 <ul>
11 {% for tag in tags %} 11 {% for tag in tags %}
12 <li id="tag-{{ tag.id|e }}"><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries | length }})</a></li> 12 <li id="tag-{{ tag.id|e }}"><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries }})</a></li>
13 {% endfor %} 13 {% endfor %}
14 </ul> 14 </ul>
15 15