Browse Source

Merge pull request #163 from simpler/master

Use <th> instead of <td> tags in the view table
Thomas 14 năm trước cách đây
mục cha
commit
f8d6427822
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Resources/views/CRUD/base_view_field.html.twig

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

@@ -11,6 +11,6 @@ file that was distributed with this source code.
 
 
 <tr>
-    <td>{% block name %}{{ field_description.name }}{% endblock %}</td>
+    <th>{% block name %}{{ field_description.name }}{% endblock %}</th>
     <td>{% block value %}{{ value }}{% endblock %}</td>
 </tr>