We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This leads to bug with closing dialog (page is still clickable and blurred)
The text was updated successfully, but these errors were encountered:
This bug reproducing on dialog-outlet placed inside app-root MdlDialogInnerOutletComponent constructor -> setDefaultViewContainerRef -> setViewContainerRef -> created MdlBackdropOverlayComponent
And
MdlDialogOutletService constructor -> ngZone.onStable.pipe subscribe -> setViewContainerRef -> created MdlBackdropOverlayComponent
So this 2 flows creates 2 MdlBackdropOverlayComponent
Sorry, something went wrong.
Temporary workaround
const initial = (MdlDialogOutletService.prototype as any).setViewContainerRef; (MdlDialogOutletService.prototype as any).setViewContainerRef = function(...args) { if (!this.backdropComponent) { initial.apply(this, args); } };
No branches or pull requests
This leads to bug with closing dialog (page is still clickable and blurred)
The text was updated successfully, but these errors were encountered: