From 110cef2ccf648b6c427bf09941dc2f2296cfa908 Mon Sep 17 00:00:00 2001 From: nitin <142569587+ehconitin@users.noreply.github.com> Date: Tue, 13 Jan 2026 15:30:38 +0530 Subject: [PATCH] fix rich text widget's side menu handle (#17113) before - https://github.com/user-attachments/assets/283a1ed6-19e9-4a4d-ba4f-5bac7d4a23ef after - https://github.com/user-attachments/assets/778a45af-fb59-4e21-aa53-290461c4d159 --- .../standalone-rich-text/components/DashboardEditorSideMenu.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/twenty-front/src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx b/packages/twenty-front/src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx index 0458cde19f..3334ddfd07 100644 --- a/packages/twenty-front/src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx +++ b/packages/twenty-front/src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx @@ -8,6 +8,7 @@ import { IconGripVertical } from 'twenty-ui/display'; import { type BLOCK_SCHEMA } from '@/activities/blocks/constants/Schema'; import { DashboardBlockDragHandleMenu } from '@/page-layout/widgets/standalone-rich-text/components/DashboardBlockDragHandleMenu'; +import { RootStackingContextZIndices } from '@/ui/layout/constants/RootStackingContextZIndices'; import { isDefined } from 'twenty-shared/utils'; type DashboardEditorSideMenuProps = { @@ -17,6 +18,7 @@ type DashboardEditorSideMenuProps = { const StyledSideMenuContainer = styled.div` display: flex; + z-index: ${RootStackingContextZIndices.DropdownPortalBelowModal}; `; const StyledDragHandleContainerWrapper = styled.div`