[WebProfilerBundle] Fixed invalid condition in form panel

This commit is contained in:
Bernhard Schussek 2013-10-17 11:55:32 +02:00
parent 4c164ca0ca
commit f21de874fc

View File

@ -175,7 +175,7 @@
<li> <li>
<a href="#details_{{ data.view_vars.id|default("") }}">{{ name }}</a> <a href="#details_{{ data.view_vars.id|default("") }}">{{ name }}</a>
{% if data.children|length > 1 %} {% if data.children is not empty %}
<ul> <ul>
{% for childName, childData in data.children %} {% for childName, childData in data.children %}
{{ _self.form_tree_entry(childName, childData) }} {{ _self.form_tree_entry(childName, childData) }}