This is an automated email from the ASF dual-hosted git repository. rusackas pushed a commit to branch fix/typo-validationDependencies in repository https://gitbox.apache.org/repos/asf/superset.git
commit 7a9095b501155322935ed624a57bc90ee76a76d5 Author: Evan Rusackas <[email protected]> AuthorDate: Thu Jan 29 12:19:01 2026 -0800 fix(explore): correct `validationDependancies` typo to `validationDependencies` Fixes a consistent misspelling across the reducer interface and both table plugin control panels (5 occurrences in 3 files). Co-Authored-By: Claude Opus 4.5 <[email protected]> --- .../plugins/plugin-chart-ag-grid-table/src/controlPanel.tsx | 2 +- superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx | 2 +- superset-frontend/src/explore/reducers/exploreReducer.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/superset-frontend/plugins/plugin-chart-ag-grid-table/src/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-ag-grid-table/src/controlPanel.tsx index 1277a8f7f38..a098674c65c 100644 --- a/superset-frontend/plugins/plugin-chart-ag-grid-table/src/controlPanel.tsx +++ b/superset-frontend/plugins/plugin-chart-ag-grid-table/src/controlPanel.tsx @@ -418,7 +418,7 @@ const config: ControlPanelConfig = { ), ], // Re run the validations when this control value - validationDependancies: ['server_pagination'], + validationDependencies: ['server_pagination'], default: 10000, choices: formatSelectOptions(ROW_LIMIT_OPTIONS_TABLE), description: t( diff --git a/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx index 2d051cf97c9..274ed5de69d 100644 --- a/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx +++ b/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx @@ -441,7 +441,7 @@ const config: ControlPanelConfig = { ), ], // Re run the validations when this control value - validationDependancies: ['server_pagination'], + validationDependencies: ['server_pagination'], default: 10000, choices: formatSelectOptions(ROW_LIMIT_OPTIONS_TABLE), description: t( diff --git a/superset-frontend/src/explore/reducers/exploreReducer.js b/superset-frontend/src/explore/reducers/exploreReducer.js index df728ee482b..0411ce1d266 100644 --- a/superset-frontend/src/explore/reducers/exploreReducer.js +++ b/superset-frontend/src/explore/reducers/exploreReducer.js @@ -217,8 +217,8 @@ export default function exploreReducer(state = {}, action) { const dependantControls = Object.entries(state.controls) .filter( ([, item]) => - Array.isArray(item?.validationDependancies) && - item.validationDependancies.includes(controlName), + Array.isArray(item?.validationDependencies) && + item.validationDependencies.includes(controlName), ) .map(([key, item]) => ({ controlState: item,
