Skip to content

Commit dcd955c

Browse files
committed
[WebProfilerBundle] fix displaying runner
1 parent 2de0734 commit dcd955c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Resources/views/Collector/config.html.twig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@
9292
</span>
9393
</div>
9494

95-
{% if collector.runner is defined and collector.runner is not null %}
95+
{% if collector.runnerClass is defined and collector.runnerClass is not null %}
9696
<div class="sf-toolbar-info-piece sf-toolbar-info-runner">
9797
<b>Runner</b>
98-
<span>{{ collector.runner|abbr_class }}</span>
98+
<span>{{ collector.runnerClass|abbr_class }}</span>
9999
</div>
100100
{% endif %}
101101

@@ -179,10 +179,10 @@
179179
{% block panel %}
180180
<h2>Symfony Configuration</h2>
181181

182-
{% if collector.runner is defined and collector.runner is not null %}
182+
{% if collector.runnerClass is defined and collector.runnerClass is not null %}
183183
<div class="metrics">
184184
<div class="metric">
185-
<span class="value">{{ collector.runner|abbr_class }}</span>
185+
<span class="value">{{ collector.runnerClass|abbr_class }}</span>
186186
<span class="label">Runner</span>
187187
</div>
188188
</div>

0 commit comments

Comments
 (0)