Skip to content

Commit c516a4e

Browse files
Merge pull request #90 from Nyholm/dev-profiler-exception
Move the exception symbol one step up in the stack
2 parents adc663d + 55a7fb0 commit c516a4e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Resources/views/webprofiler.html.twig

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
<tr class="httplug-request-stack">
118118
<td class="httplug-plugin-name">&darr; {{ pluginNames[idx-1] }} </td>
119119
<td class="httplug-plugin-name">&uarr;
120-
{% if failureStack[idx] %}
120+
{% if failureStack[idx-1] %}
121121
<span class="httplug-error">&#9747;</span>
122122
{% endif %}
123123
</td>
@@ -130,7 +130,11 @@
130130
{% if loop.last %}
131131
<tr class="httplug-request-stack">
132132
<td class="httplug-plugin-name">&#10230; <span class="push-right">HTTP client</span></td>
133-
<td class="httplug-plugin-name">&uarr;</td>
133+
<td class="httplug-plugin-name">&uarr;
134+
{% if failureStack[idx-1] %}
135+
<span class="httplug-error">&#9747;</span>
136+
{% endif %}
137+
</td>
134138
</tr>
135139
{% endif %}
136140
{% endfor %}

0 commit comments

Comments
 (0)