- Issue created by @gorkagr
- First commit to issue fork.
- Status changed to Fixed
over 1 year ago 8:26am 10 December 2023 Automatically closed - issue fixed for 2 weeks with no activity.
Hi!
This is the same issue reported in here: https://www.drupal.org/project/radix/issues/3241198 🐛 dropdown links not toggled Fixed but it seems it is back again (I see the file affected was changed in https://git.drupalcode.org/project/radix/-/commit/ee9c0e44a4fa01c19776ad...) . AS i cannot open the original issue, i will just C&P the same text as there
The patch submitted in the original issue is still valid.
Problem/Motivation
The dropdown doesn't toggle as it should as it is using "data-toggle" instead of "data-bs-toggle" .
in line https://git.drupalcode.org/project/radix/-/blob/5.0.x/src/components/nav... .
Steps to reproduce
Use some vbo views.
Proposed resolution
lazy diff:
- <button type="button" class="btn btn-sm btn-outline-dark dropdown-toggle {{ split ? 'dropdown-toggle-split' }}" data-toggle="dropdown">
+ <button type="button" class="btn btn-sm btn-outline-dark dropdown-toggle {{ split ? 'dropdown-toggle-split' }}" data-bs-toggle="dropdown">
Fixed
5.0
Code
Automatically closed - issue fixed for 2 weeks with no activity.