-
Notifications
You must be signed in to change notification settings - Fork 13.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RC - Loading depth seems to be misplaced #8467
Comments
I also discovered that it only happens when this sub-page is pushed in from the pop over. |
I found a workaround which is to use navController reference acquired in root page rather than in pop over page when pushing in a sub page from pop over page. This issue is also related to #8477. |
Hello, thanks for opening an issue with us! Could you post a repo that I can use to reproduce this issue? Thanks! |
@jgw96 here's a repo you can use to reproduce the issue: https://github.com/msalcala11/loading-bug |
The same issue appears when opening a Modal from within a Modal and then opening a Loading. |
Thanks for the issue! This issue is being closed due to inactivity. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out. Thank you for using Ionic! |
When invoking loading overlay to be shown inside a sub-page it does not appear on top of the sub-page but instead it appear on top of the root page. Seems like the z-index is messed up somewhere.
Code
let loading = this._loadingController.create({ content: "Message..." }); loading.present()
The text was updated successfully, but these errors were encountered: