Skip to content

Commit 0c9c9f6

Browse files
committed
Fixed an HTML markup issue for the new events panel
1 parent 66a9b09 commit 0c9c9f6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/events.html.twig

+5-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<th>Listener</th>
5858
</tr>
5959
</thead>
60-
<tbody>
60+
6161
{% set previous_event = (listeners|first).event %}
6262
{% for listener in listeners %}
6363
{% if loop.first or listener.event != previous_event %}
@@ -108,7 +108,10 @@
108108
{% endif %}
109109
</td>
110110
</tr>
111+
112+
{% if loop.last %}
113+
</tbody>
114+
{% endif %}
111115
{% endfor %}
112-
</tbody>
113116
</table>
114117
{% endmacro %}

0 commit comments

Comments
 (0)