Browse Source

fix floating check with label for firefox

Julien Herpin 10 năm trước cách đây
mục cha
commit
805c05200e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Resources/views/CRUD/tree.html.twig

+ 1 - 1
Resources/views/CRUD/tree.html.twig

@@ -58,12 +58,12 @@ file that was distributed with this source code.
                         {% for context in contexts %}
                             <li>
                                 <a href="{{ admin.generateUrl('tree', { 'context': context.id }) }}">
-                                    {{ site.name }}
                                     {% if currentContext and context.id == currentContext.id %}
                                         <span class="pull-right">
                                             <i class="fa fa-check"></i>
                                         </span>
                                     {% endif %}
+                                    {{ site.name }}
                                 </a>
                             </li>
                         {% endfor%}