From 03f04f07872f2607d55d9ca6f4a417dcd19eeac6 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 5 Nov 2025 11:29:19 +0100 Subject: [PATCH] fix(task): slash menu appearing behind modals (#1752) The slash menu in the editor was appearing behind task detail modals (z-index 4000) because it had a z-index of only 1000. This made the menu inaccessible when editing task descriptions in Kanban view. Updated the z-index to 4700 to place it above modals while keeping it below system notifications (z-index 9999). Fixes #1746 --- frontend/src/components/input/editor/suggestion.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/input/editor/suggestion.ts b/frontend/src/components/input/editor/suggestion.ts index 7d6c4a44b..3d8ca7f80 100644 --- a/frontend/src/components/input/editor/suggestion.ts +++ b/frontend/src/components/input/editor/suggestion.ts @@ -190,7 +190,7 @@ export default function suggestionSetup(t) { popupElement.style.position = 'absolute' popupElement.style.top = '0' popupElement.style.left = '0' - popupElement.style.zIndex = '1000' + popupElement.style.zIndex = '4700' popupElement.appendChild(component.element!) document.body.appendChild(popupElement)