1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-06 09:37:36 +03:00

fix(editor): Prevent dialog overlay from rendering on top of AI Assistant (no-changelog) (#10509)

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 {