-
Notifications
You must be signed in to change notification settings - Fork 280
fix(ui5-popover): render block layers in the correct order #12659
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
base: main
Are you sure you want to change the base?
Conversation
OpenUI5 dialogs' and the WebC dialogs' block layers are rendered in order Fixes: 12444
|
🚀 Deployed on https://pr-12659--ui5-webcomponents-preview.netlify.app |
Fixes failing test
Stoev
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OpenUI5 dialogs' and the Web Components dialogs' block layers are rendered and displayed in the order of opened dialogs.
| </ui5-dialog> | ||
| <ui5-dialog id="newDialog1" header-text="This is an WebC Dialog 2"> | ||
| <ui5-button id="someButton">Some button</ui5-button> | ||
| <ui5-dialog id="newDialog1" draggable header-text="This is an WebC Dialog 2"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <ui5-dialog id="newDialog1" draggable header-text="This is an WebC Dialog 2"> | |
| <ui5-dialog id="newDialog1" draggable header-text="This is a Web Component Dialog 2"> |
| <ui5-dialog id="newDialog1" draggable header-text="This is an WebC Dialog 2"> | ||
| <ui5-button id="someButton2">Some button 1</ui5-button> | ||
| </ui5-dialog> | ||
| <ui5-dialog id="newDialog2" draggable header-text="This is an WebC Dialog 3"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above, if appropriate, please change all entries "an WebC" to "a Web Component".
OpenUI5 dialogs' and the WebC dialogs' block layers are rendered and displayed in the order of opened dialogs
Fixes: #12444