Skip to content

Commit daf77cb

Browse files
authored
Fixed render error in profiler/translation.html.twig (fixes #496) (#497)
1 parent 28d9df3 commit daf77cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Resources/views/SymfonyProfiler/translation.html.twig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@
8181
<tbody>
8282
{% for key, message in messages %}
8383
<tr id="{{ key }}">
84-
<td>
85-
{% if withCheckbox %}
84+
{% if withCheckbox %}
85+
<td>
8686
<input type="checkbox" name="translationKey" value="{{ key }}" checked="checked" class="translation-key-checkbox">
87-
{% endif %}
88-
</td>
87+
</td>
88+
{% endif %}
8989
<td class="font-normal text-small">{{ message.locale }}</td>
9090
<td class="font-normal text-small text-bold nowrap">{{ message.domain }}</td>
9191
<td class="font-normal text-small">{{ message.count }}</td>

0 commit comments

Comments
 (0)