Procházet zdrojové kódy

Merge pull request #163 from simpler/master

Use <th> instead of <td> tags in the view table
Thomas před 14 roky
rodič
revize
f8d6427822
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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>