This is an automated email from the ASF dual-hosted git repository. enzomartellucci pushed a commit to branch enxdev/fix/chart-table in repository https://gitbox.apache.org/repos/asf/superset.git
commit 57bc0410e4f6b1a9d15cc6b3dde0ab995aab1c81 Author: Enzo Martellucci <[email protected]> AuthorDate: Sat Jan 3 13:12:39 2026 +0100 fix(plugin-chart-table): fix column misalignment when no scrollbars present --- .../plugins/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 2133c02c36..e6e58939c6 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', }}
