From ee5227733b7d3d1a79ffeda160731ca30cac02a1 Mon Sep 17 00:00:00 2001 From: "Michael S. Molina" <70410625+michael-s-molina@users.noreply.github.com> Date: Mon, 24 Jun 2024 14:36:18 -0300 Subject: [PATCH] fix: Cannot delete empty column inside a tab using the dashboard editor (#29346) --- superset-frontend/src/dashboard/components/menu/HoverMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/dashboard/components/menu/HoverMenu.tsx b/superset-frontend/src/dashboard/components/menu/HoverMenu.tsx index e38849d72..2af9faa8d 100644 --- a/superset-frontend/src/dashboard/components/menu/HoverMenu.tsx +++ b/superset-frontend/src/dashboard/components/menu/HoverMenu.tsx @@ -33,7 +33,7 @@ const HoverStyleOverrides = styled.div` .hover-menu { opacity: 0; position: absolute; - z-index: 10; + z-index: 11; // one more than DragDroppable font-size: ${({ theme }) => theme.typography.sizes.m}; }