This is an automated email from the ASF dual-hosted git repository. rusackas pushed a commit to branch chore/ts-migration-non-dashboard in repository https://gitbox.apache.org/repos/asf/superset.git
commit f8701f4b5d6d901f32138abc49943cebbc5984a8 Author: Evan Rusackas <[email protected]> AuthorDate: Wed Jan 14 20:34:38 2026 -0800 fix(types): add chartRenderingSucceeded to Actions type Add missing chartRenderingSucceeded method to Actions type in Chart.tsx to match the ChartActions interface expected by ChartRenderer. Co-Authored-By: Claude Opus 4.5 <[email protected]> --- superset-frontend/src/components/Chart/Chart.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/src/components/Chart/Chart.tsx b/superset-frontend/src/components/Chart/Chart.tsx index a597a8f9db..3eca196a80 100644 --- a/superset-frontend/src/components/Chart/Chart.tsx +++ b/superset-frontend/src/components/Chart/Chart.tsx @@ -100,6 +100,7 @@ export type Actions = { chartId: number, arg2: string | null, ): Dispatch; + chartRenderingSucceeded(chartId: number): Dispatch; postChartFormData( formData: SqlaFormData, arg1: boolean,
