diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2017-06-10 11:21:47 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2017-06-10 11:21:47 +0200 |
commit | a9b984feeef84474add8a7c4a8e741816bf8f0e0 (patch) | |
tree | e1af2c16108a8587996ea8b5229c748f78da0256 | |
parent | a8993999893fb665b5e96597f9b649a2a8b940a2 (diff) | |
download | wallabag-a9b984feeef84474add8a7c4a8e741816bf8f0e0.tar.gz wallabag-a9b984feeef84474add8a7c4a8e741816bf8f0e0.tar.zst wallabag-a9b984feeef84474add8a7c4a8e741816bf8f0e0.zip |
Fix tags count in tags list on baggy
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig | 2 |
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 | ||