]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Change remove tag icon in entry view with material theme 1728/head
authorNicolas Lœuillet <nicolas.loeuillet@smile.fr>
Fri, 26 Feb 2016 07:58:36 +0000 (08:58 +0100)
committerNicolas Lœuillet <nicolas.loeuillet@smile.fr>
Fri, 26 Feb 2016 07:58:36 +0000 (08:58 +0100)
src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig

index a40789d8f8b86eefb5828545f80912de8b0fecbf..f6ba83aeb4a00fc0e08be65ab3bfcb5005480391 100644 (file)
@@ -189,7 +189,7 @@ main {
             <div id="list">
                 {% for tag in entry.tags %}
                     <div class="chip">
-                    {{ tag.label }} <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="mdi-navigation-close"></i></a>
+                    {{ tag.label }} <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="mdi-action-delete"></i></a>
                     </div>
                 {% endfor %}
             </div>