From 819e1d6fab2e91ba4d1963ab6d3bc74051e79e27 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 7 Dec 2025 23:06:39 +0100 Subject: [PATCH] fix(editor): link input appearing behind modals Resolves https://github.com/go-vikunja/vikunja/issues/1929 --- frontend/src/helpers/inputPrompt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/helpers/inputPrompt.ts b/frontend/src/helpers/inputPrompt.ts index 77c5ad42f..b3245b994 100644 --- a/frontend/src/helpers/inputPrompt.ts +++ b/frontend/src/helpers/inputPrompt.ts @@ -12,7 +12,7 @@ export default function inputPrompt(pos: ClientRect, oldValue: string = ''): Pro popupElement.style.position = 'absolute' popupElement.style.top = '0' popupElement.style.left = '0' - popupElement.style.zIndex = '1000' + popupElement.style.zIndex = '4700' popupElement.style.background = 'white' popupElement.style.border = '1px solid #ccc' popupElement.style.borderRadius = '4px'