fix: [helper:boostrap] Make sure all properties are passed to the button component

pull/121/head
Sami Mokaddem 2022-10-28 09:11:21 +02:00
parent 4c401e6e29
commit 351b90d843
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 1 additions and 1 deletions

View File

@ -1947,7 +1947,7 @@ class BoostrapDropdownMenu extends BootstrapGeneric
'aria-expanded' => 'false',
]
];
$options = array_merge($this->options['toggle-button'], $defaultOptions);
$options = array_merge_recursive($this->options['toggle-button'], $defaultOptions);
return $this->btHelper->button($options);
}