Merge pull request #3203 from wallabag/fix-tag-count-baggy

Fix tags count in tags list on baggy
This commit is contained in:
Jérémy Benoist 2017-06-10 13:16:10 +02:00 committed by GitHub
commit de9445cd25
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
<ul>
{% for tag in tags %}
<li id="tag-{{ tag.id|e }}"><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries | length }})</a></li>
<li id="tag-{{ tag.id|e }}"><a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries }})</a></li>
{% endfor %}
</ul>