mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-11 09:25:25 +00:00
[Boyscout] Useless title on tags removed
This commit is contained in:
parent
5d1abde36d
commit
18943d191f
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
{% if tags is iterable and tags is not empty %}
|
||||
<ul class="tags{{ listClass|default("") }}">
|
||||
{% for tag in tags %}
|
||||
<li class="chip" title="{{ tag.label }}">
|
||||
<li class="chip">
|
||||
<a class="chip-label" href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{ tag.label }}</a>
|
||||
{% if withRemove is defined and withRemove == true %}
|
||||
<a class="chip-action" href="{{ path('remove_tag', {'entry': entryId, 'tag': tag.id}) }}" onclick="return confirm('{{ 'entry.confirm.delete_tag'|trans|escape('js') }}')">
|
||||
|
|
Loading…
Reference in a new issue