From e3a546f08e62a0ccb8bdba82f6703e8a2b0affc1 Mon Sep 17 00:00:00 2001 From: Gabriel Borlea Date: Tue, 7 Mar 2023 11:49:18 +0200 Subject: [PATCH] fix(dialog-portal): set z-index to high value --- react/features/toolbox/components/web/DialogPortal.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/react/features/toolbox/components/web/DialogPortal.ts b/react/features/toolbox/components/web/DialogPortal.ts index 2c78b99cf..0278cf3cb 100644 --- a/react/features/toolbox/components/web/DialogPortal.ts +++ b/react/features/toolbox/components/web/DialogPortal.ts @@ -65,6 +65,7 @@ function DialogPortal({ children, className, style, getRef, setSize }: Props) { useEffect(() => { if (portalTarget && getRef) { getRef(portalTarget); + portalTarget.style.zIndex = '300'; } }, [ portalTarget ]);