Files
superset2/superset-frontend/src/explore
Evan Rusackas 7784933404 fix(SaveModal): widen onDashboardChange param to antd SelectValue
The function-component SaveModal typed onDashboardChange as taking
`{ label; value } | null`, which TS2322-rejected against AsyncSelect's
onChange signature — the antd callback supplies the broader
`SelectValue` (which includes `undefined`).

Widen the parameter to `SelectValue` and narrow to the expected
labeled-value shape inside the body; runtime behavior is unchanged
(single-mode AsyncSelect always emits a labeled option or
null/undefined).
2026-04-25 17:29:17 -07:00
..