From a9e74b21f16d1a57a9c60e6bbf56b154903089f0 Mon Sep 17 00:00:00 2001 From: lyzno1 Date: Mon, 13 Oct 2025 14:00:28 +0800 Subject: [PATCH] fix: increase ContentDialog z-index to display above workflow operators The collaboration feature increased workflow operator z-index from z-10 to z-[60]. This caused the AppInfo ContentDialog (z-30) to appear below the operator buttons. Increased ContentDialog z-index to z-[70] to ensure proper layer hierarchy. --- web/app/components/base/content-dialog/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/app/components/base/content-dialog/index.tsx b/web/app/components/base/content-dialog/index.tsx index 5efab57a40..588ef67bc1 100644 --- a/web/app/components/base/content-dialog/index.tsx +++ b/web/app/components/base/content-dialog/index.tsx @@ -15,11 +15,12 @@ const ContentDialog = ({ onClose, children, }: ContentDialogProps) => { + // z-[70]: Ensures dialog appears above workflow operators (z-[60]) and other UI elements return (