Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Walther <swalther@complex-it.de>2022-10-14 22:39:35 +0300
committerWilliam Desportes <williamdes@wdes.fr>2022-10-15 02:54:58 +0300
commite686d90f87b219ef2f68e4ab112e5295c1d22b35 (patch)
tree2a92703a8b39b2767c2eab04716922c5a1c70670 /templates
parentdcdbcc019b3949167034724e75e8539c8d7d3fc1 (diff)
Move tbody tag out of for loop in DBtable's index-table
Signed-off-by: Sebastian Walther <swalther@complex-it.de>
Diffstat (limited to 'templates')
-rw-r--r--templates/table/structure/display_structure.twig6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/table/structure/display_structure.twig b/templates/table/structure/display_structure.twig
index 9eb2b66aa3..58ff7528df 100644
--- a/templates/table/structure/display_structure.twig
+++ b/templates/table/structure/display_structure.twig
@@ -467,8 +467,8 @@
</tr>
</thead>
+ <tbody class="row_span">
{% for index in indexes %}
- <tbody class="row_span">
{% set columns_count = index.getColumnCount() %}
<tr class="noclick">
<td rowspan="{{ columns_count }}" class="edit_index d-print-none ajax">
@@ -534,8 +534,8 @@
{% endif %}
</tr>
{% endfor %}
- </tbody>
- {% endfor %}
+ {% endfor %}
+ </tbody>
</table>
</div>
{% else %}