瀏覽代碼

Merge pull request #2556 from juherpin/fix-floating-label

Fix floating check with label for firefox
Thomas 10 年之前
父節點
當前提交
eb9a0075f0
共有 1 個文件被更改,包括 1 次插入1 次删除
  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%}