ngx-bootstrap icon indicating copy to clipboard operation
ngx-bootstrap copied to clipboard

TabSet display: none for not active pane blocks any modal to be visible

Open adurmus opened this issue 3 years ago • 0 comments

<tabset>
<tab class="active">
 <modal1> <modal1>
</tab>
<tab >
<modal2> <modal2>
</tab>
</tabset>

if you have some components that is in tabs that are not active then those modalsv(modal2 in the above example) cannot be used. Backdrop works but the modal is not visible as the following in place.

.tab-content > .tab-pane {
  display: none;
}

Is there any way to avoid this issue other than moving all components outside of tab?

adurmus avatar Sep 15 '22 09:09 adurmus