8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a80348b commit 5e6b3a5Copy full SHA for 5e6b3a5
src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/form.html.twig
@@ -624,7 +624,10 @@
624
<th>{{ option }}</th>
625
<td>{{ profiler_dump(value) }}</td>
626
<td>
627
- {% if data.resolved_options[option] == value %}
+ {# values can be stubs #}
628
+ {% set option_value = value.value|default(value) %}
629
+ {% set resolved_option_value = data.resolved_options[option].value|default(data.resolved_options[option]) %}
630
+ {% if resolved_option_value == option_value %}
631
<em class="font-normal text-muted">same as passed value</em>
632
{% else %}
633
{{ profiler_dump(data.resolved_options[option]) }}
0 commit comments