From 740ddc03e20116defe2bf856a8cb31ade1d4123b Mon Sep 17 00:00:00 2001 From: Enzo Martellucci <52219496+EnxDev@users.noreply.github.com> Date: Mon, 5 Jan 2026 13:52:37 +0100 Subject: [PATCH] fix(plugin-chart-table): remove column misalignment when no scrollbars are present (#36891) --- .../plugin-chart-table/src/DataTable/hooks/useSticky.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/hooks/useSticky.tsx b/superset-frontend/plugins/plugin-chart-table/src/DataTable/hooks/useSticky.tsx index 2133c02c36b..e6e58939c6a 100644 --- a/superset-frontend/plugins/plugin-chart-table/src/DataTable/hooks/useSticky.tsx +++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/hooks/useSticky.tsx @@ -344,7 +344,7 @@ function StickyWrap({ style={{ height: bodyHeight, overflow: 'auto', - scrollbarGutter: 'stable', + scrollbarGutter: hasVerticalScroll ? 'stable' : undefined, width: maxWidth, boxSizing: 'border-box', }}