Not listing items into dropdown list
tikemantns opened this issue · 2 comments
tikemantns commented
I am using angular 7 and bootstrap 4, its not showing dropdown list to i select any things .
sickOscar commented
In my case it was a conflict with the .dropdown-menu
class of bootstrap.
I fixed it with the following css snippet
.ui-select-container .dropdown-menu {
display: block;
}
Kirding commented
In my case it was a conflict with the
.dropdown-menu
class of bootstrap.I fixed it with the following css snippet
.ui-select-container .dropdown-menu { display: block; }
so good