Skip to content

Commit bcdffc9

Browse files
committed
Fix a data collector issue in the Twig Components
1 parent 19b09c4 commit bcdffc9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/Collector/twig_component.html.twig

+3-3
Original file line numberDiff line numberDiff line change
@@ -287,15 +287,15 @@
287287
<tbody id="render-{{ loop.index }}--details">
288288
<tr class="{{ not render.input_props|default ? 'opacity-50' }}">
289289
<th scope="row">Input props</th>
290-
<td colspan="3">{{ profiler_dump(render.input_props) }}</td>
290+
<td colspan="4">{{ profiler_dump(render.input_props) }}</td>
291291
</tr>
292292
<tr class="{{ not render.attributes|default ? 'opacity-50' }}">
293293
<th scope="row">Attributes</th>
294-
<td colspan="3">{{ profiler_dump(render.attributes) }}</td>
294+
<td colspan="4">{{ profiler_dump(render.attributes) }}</td>
295295
</tr>
296296
<tr>
297297
<th scope="row">Component</th>
298-
<td colspan="3">{{ profiler_dump(render.component) }}</td>
298+
<td colspan="4">{{ profiler_dump(render.component) }}</td>
299299
</tr>
300300
</tbody>
301301
</table>

0 commit comments

Comments
 (0)