Problem/Motivation
Problem is a wrong option id used in two places:
diff --git a/themes/bs_bootstrap/bs_bootstrap.theme b/themes/bs_bootstrap/bs_bootstrap.theme
index 099624a..2bcc6fe 100644
--- a/themes/bs_bootstrap/bs_bootstrap.theme
+++ b/themes/bs_bootstrap/bs_bootstrap.theme
@@ -685,7 +685,7 @@ function bs_bootstrap_get_setting($setting_name) {
'navbar_container_type' => 'fluid',
],
'navbar_type' => 'second-level-dropdown',
- 'Navbar opened submenu behavior' => 'visit',
+ 'navbar_opened_submenu_behavior' => 'visit',
'language_block' => [
'type' => 'links',
'title' => 'label',
diff --git a/themes/bs_bootstrap/config/install/bs_bootstrap.settings.yml b/themes/bs_bootstrap/config/install/bs_bootstrap.settings.yml
index 7f3db7b..50a70b2 100644
--- a/themes/bs_bootstrap/config/install/bs_bootstrap.settings.yml
+++ b/themes/bs_bootstrap/config/install/bs_bootstrap.settings.yml
@@ -30,5 +30,5 @@ bs_bootstrap:
navbar_offcanvas:
type: push
position: right
- Navbar opened submenu behavior: visit
+ navbar_opened_submenu_behavior: visit
navbar_type: second-level-horizontal
Seems I've messed with some search and replace refactoring and used label instead of id :(
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | navbar-open-dropdown-click-behavior-bug-3284407-2.patch | 1.05 KB | pivica |
Comments
Comment #2
pivica commentedHere is a patch.
Comment #4
pivica commentedCommitted.