fix(editor): Prevent dialog overlay from rendering on top of AI Assistant (no-changelog) (#10509)
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions

This commit is contained in:
Milorad FIlipović 2024-08-23 10:16:10 +02:00 committed by GitHub
parent 00412563b6
commit 9cd7f1ec0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -97,7 +97,7 @@ function onClose() {
.container {
grid-area: rightsidebar;
height: 100%;
z-index: 3000; /* Above NDV, below notifications */
z-index: 99999; /* Needs to be high enough so it doesn't get covered by element-ui dialogs */
}
.wrapper {