Issues with Bootstrap 5 dropdown tabs
Created by: cpsievert
In this codepen, if you select one dropdown it'll 'activate' the other:
https://codepen.io/cpsievert/pen/xxgWQjp
![Screen Shot 2021-04-13 at 3 58 22 PM](/twbs/bootstrap/uploads/76b3d507e129e4e0ffe6715c86f3cb31/114620759-887c0a00-9c71-11eb-8f88-4af2028045e3.png)
Also, note that the codepen uses the following markup:
<ul class="dropdown-menu">
<a class="dropdown-item" href="#">Action</a>
</ul>
But, if you use the markup structure that the docs recommend, namely:
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
</ul>
Then you'll get other, different, issues with the .active
class not being updated properly...