diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@smile.fr> | 2016-02-26 08:58:36 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@smile.fr> | 2016-02-26 08:58:36 +0100 |
commit | 575e6907e5481482c3c42d64db11ce4e82d088d8 (patch) | |
tree | 1a74436f19552637f8b539f202bd607d4504293a /src | |
parent | 74932af231d7abde2c6ecc30bbb6d95dd151ef6f (diff) | |
download | wallabag-575e6907e5481482c3c42d64db11ce4e82d088d8.tar.gz wallabag-575e6907e5481482c3c42d64db11ce4e82d088d8.tar.zst wallabag-575e6907e5481482c3c42d64db11ce4e82d088d8.zip |
Change remove tag icon in entry view with material theme
Diffstat (limited to 'src')
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig index a40789d8..f6ba83ae 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig | |||
@@ -189,7 +189,7 @@ main { | |||
189 | <div id="list"> | 189 | <div id="list"> |
190 | {% for tag in entry.tags %} | 190 | {% for tag in entry.tags %} |
191 | <div class="chip"> | 191 | <div class="chip"> |
192 | {{ tag.label }} <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="mdi-navigation-close"></i></a> | 192 | {{ tag.label }} <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="mdi-action-delete"></i></a> |
193 | </div> | 193 | </div> |
194 | {% endfor %} | 194 | {% endfor %} |
195 | </div> | 195 | </div> |