diff --git a/djangocms_frontend/templates/bootstrap5/menu.html b/djangocms_frontend/templates/bootstrap5/menu.html
index 22d6f201..1a3bfcb9 100644
--- a/djangocms_frontend/templates/bootstrap5/menu.html
+++ b/djangocms_frontend/templates/bootstrap5/menu.html
@@ -1,13 +1,12 @@
{% load i18n menu_tags cache %}{% spaceless %}
{% for child in children %}
-
- {% if child.children %}
-
- {% else %}
- {{ child.get_menu_title }}
- {% endif %}
-
+
+
+ {% if child.children %}
+
+ {% endif %}
+
{% endfor %}
{% endspaceless %}
diff --git a/gulpfile.js b/gulpfile.js
index ced46c58..d9c6d73c 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -73,5 +73,5 @@ function task(id, extra) {
gulp.task('sass', task('sass'));
gulp.task('watch', function () {
- gulp.watch(PROJECT_PATTERNS.sass, ['sass']);
+ gulp.watch(PROJECT_PATTERNS.sass, gulp.series('sass'));
});