Explorar o código

Merge pull request #1148 from solzenic/patch-listbool

Added missing space after icon in list for boolean type.
Thomas %!s(int64=12) %!d(string=hai) anos
pai
achega
ade72ff1a7
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      Resources/views/CRUD/list_boolean.html.twig

+ 2 - 2
Resources/views/CRUD/list_boolean.html.twig

@@ -27,10 +27,10 @@ file that was distributed with this source code.
     {% endif %}
 {% else %}
     {% if value %}
-        <i class="icon-ok-circle"></i>
+        <i class="icon-ok-circle"></i>&nbsp;
         {%- trans from 'SonataAdminBundle' %}label_type_yes{% endtrans -%}
     {% else %}
-        <i class="icon-ban-circle"></i>
+        <i class="icon-ban-circle"></i>&nbsp;
         {%- trans from 'SonataAdminBundle' %}label_type_no{% endtrans -%}
     {% endif %}
 {% endif %}