Ionic Popover view displays behind ionic modal view

one hack way is to change the z-index to a larger number against the modal (which is 10)
.popover-backdrop {
z-index: 11;
}
.popover {
z-index: 11;
}

1 Like