This is an automated email from the ASF dual-hosted git repository. msyavuz pushed a commit to branch msyavuz/chore/disable-matrixify-for-incompatible-viz in repository https://gitbox.apache.org/repos/asf/superset.git
commit e5e267af4cdbac9bdcd42824d797a5ca85afd2d7 Author: Mehmet Salih Yavuz <[email protected]> AuthorDate: Thu Jan 15 12:21:56 2026 +0300 feat: add other tables to unsupported set --- .../src/explore/components/ControlPanelsContainer.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/explore/components/ControlPanelsContainer.tsx b/superset-frontend/src/explore/components/ControlPanelsContainer.tsx index 4dd7a68120..9ba07d46ee 100644 --- a/superset-frontend/src/explore/components/ControlPanelsContainer.tsx +++ b/superset-frontend/src/explore/components/ControlPanelsContainer.tsx @@ -795,8 +795,14 @@ export const ControlPanelsContainer = (props: ControlPanelsContainerProps) => { ]); const showCustomizeTab = customizeSections.length > 0; - // Charts that don't support matrixify feature - const MATRIXIFY_INCOMPATIBLE_CHARTS = new Set([VizType.TableAgGrid]); + // Table charts don't support matrixify feature + const MATRIXIFY_INCOMPATIBLE_CHARTS = new Set([ + VizType.Table, + VizType.TableAgGrid, + VizType.PivotTable, + VizType.TimeTable, + VizType.TimePivot, + ]); const showMatrixifyTab = isFeatureEnabled(FeatureFlag.Matrixify) && !MATRIXIFY_INCOMPATIBLE_CHARTS.has(form_data.viz_type as VizType);
