[Profiler][Form] Fix form profiler errors profiler_dump

This commit is contained in:
Maxime Steinhausser 2017-01-12 20:16:54 +01:00
parent fef1546a7e
commit 207fab63db

View File

@ -492,7 +492,9 @@
<td>
{% if error.trace %}
<span class="newline">Caused by:</span>
{{ profiler_dump(error.trace, maxDepth=2) }}
{% for stacked in error.trace %}
{{ profiler_dump(stacked) }}
{% endfor %}
{% else %}
<em>Unknown.</em>
{% endif %}