From 8b1c41a012c90d50afbf09816ec4ef309fcbc44e Mon Sep 17 00:00:00 2001 From: Alexandru Soare <37236580+alexandrusoare@users.noreply.github.com> Date: Mon, 15 Dec 2025 12:57:07 +0200 Subject: [PATCH] fix(tab): Fix tabs in column not clickable (#36528) --- .../components/DashboardBuilder/DashboardBuilder.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx b/superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx index 40399e16bb7..38f0dcac2b1 100644 --- a/superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx +++ b/superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx @@ -249,6 +249,11 @@ const DashboardContentWrapper = styled.div` z-index: ${EMPTY_CONTAINER_Z_INDEX}; position: absolute; width: 100%; + pointer-events: none; + + & > .drop-indicator { + pointer-events: auto; + } } & > .empty-droptarget:first-child:not(.empty-droptarget--full) {