Skip to content

Commit dc26ce1

Browse files
committed
Add type of binding data in debug
1 parent cee9aca commit dc26ce1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

resources/Twig/Debug/hector.html.twig

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,16 @@
107107
<thead>
108108
<tr>
109109
<th scope="col">Key</th>
110+
<th scope="col">Type</th>
110111
<th scope="col">Value</th>
111112
</tr>
112113
</thead>
113114
<tbody>
114115
{% for key, value in logEntry.parameters %}
115116
<tr>
116117
<th scope="row">{{ key }}</th>
117-
<td>{{ value }}</td>
118+
<td>{{ value.dataType }}</td>
119+
<td>{{ value.variable }}</td>
118120
</tr>
119121
{% endfor %}
120122
</tbody>

0 commit comments

Comments
 (0)