Skip to content

Commit f405c17

Browse files
committed
Add a missing ul tag for multilevel menu
Fixes #366
1 parent 3b2a283 commit f405c17

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Resources/views/Menu/bootstrap.html.twig

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@
8383
{% block listList %}
8484
{% spaceless %}
8585
{% if item.hasChildren and options.depth is not sameas(0) and item.displayChildren %}
86-
{{ block('children') }}
86+
<ul{{ _self.attributes(listAttributes) }}>
87+
{{ block('children') }}
88+
</ul>
8789
{% endif %}
8890
{% endspaceless %}
8991
{% endblock listList %}

0 commit comments

Comments
 (0)