From b27ecdf09259fb72ec978b0fcad4b220faee955b Mon Sep 17 00:00:00 2001
From: Douglas Fabris <devfabris@gmail.com>
Date: Mon, 11 Nov 2024 18:48:34 -0300
Subject: [PATCH] regression: Restore contextualbar resizable handler (#33921)

---
 .../client/components/Contextualbar/ContextualbarResizable.tsx  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/meteor/client/components/Contextualbar/ContextualbarResizable.tsx b/apps/meteor/client/components/Contextualbar/ContextualbarResizable.tsx
index 05dd9bf0cf2..8eb35d0c9c9 100644
--- a/apps/meteor/client/components/Contextualbar/ContextualbarResizable.tsx
+++ b/apps/meteor/client/components/Contextualbar/ContextualbarResizable.tsx
@@ -29,7 +29,7 @@ const ContextualbarResizable = ({ defaultWidth, children, ...props }: Contextual
 			minWidth={defaultWidth}
 			maxWidth='50%'
 			minHeight='100%'
-			handleStyles={{ left: { width: '3px', zIndex: '5', left: 0 } }}
+			handleStyles={{ left: { width: '3px', zIndex: 99, left: 0 } }}
 			handleComponent={{ left: <Box className={handleStyle} /> }}
 		>
 			{children}
-- 
GitLab