Ver código fonte

Added missing space after icon in list for boolean type.

solzenic 12 anos atrás
pai
commit
e1e7420ec6
1 arquivos alterados com 2 adições e 2 exclusões
  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 %}
     {% endif %}
 {% else %}
 {% else %}
     {% if value %}
     {% if value %}
-        <i class="icon-ok-circle"></i>
+        <i class="icon-ok-circle">&nbsp;
         {%- trans from 'SonataAdminBundle' %}label_type_yes{% endtrans -%}
         {%- trans from 'SonataAdminBundle' %}label_type_yes{% endtrans -%}
     {% else %}
     {% else %}
-        <i class="icon-ban-circle"></i>
+        <i class="icon-ban-circle"></i>&nbsp;
         {%- trans from 'SonataAdminBundle' %}label_type_no{% endtrans -%}
         {%- trans from 'SonataAdminBundle' %}label_type_no{% endtrans -%}
     {% endif %}
     {% endif %}
 {% endif %}
 {% endif %}