diff --git a/superset-frontend/src/explore/actions/saveModalActions.js b/superset-frontend/src/explore/actions/saveModalActions.js index b5bb2c6f97cb..1764a009c3cf 100644 --- a/superset-frontend/src/explore/actions/saveModalActions.js +++ b/superset-frontend/src/explore/actions/saveModalActions.js @@ -43,6 +43,12 @@ export function fetchDashboards(userId) { value: id, label: (json.result[index] || {}).dashboard_title, })); + choices.sort((a, b) => + a.label.localeCompare(b.label, { + sensitivity: 'base', + numeric: true, + }), + ); return dispatch(fetchDashboardsSucceeded(choices)); })