valor-software/ng2-select

Not listing items into dropdown list

tikemantns opened this issue · 2 comments

I am using angular 7 and bootstrap 4, its not showing dropdown list to i select any things .

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;
}

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