From 9cd7f1ec0de2cfab3fa226b9338f9791029cd347 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milorad=20FIlipovi=C4=87?= Date: Fri, 23 Aug 2024 10:16:10 +0200 Subject: [PATCH] fix(editor): Prevent dialog overlay from rendering on top of AI Assistant (no-changelog) (#10509) --- .../editor-ui/src/components/AskAssistant/AskAssistantChat.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/AskAssistant/AskAssistantChat.vue b/packages/editor-ui/src/components/AskAssistant/AskAssistantChat.vue index 6a379e0a5..38255426c 100644 --- a/packages/editor-ui/src/components/AskAssistant/AskAssistantChat.vue +++ b/packages/editor-ui/src/components/AskAssistant/AskAssistantChat.vue @@ -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 {