This is an automated email from the ASF dual-hosted git repository.
aafghahi pushed a change to branch 2.0
in repository https://gitbox.apache.org/repos/asf/superset.git
from 8237558d62 changelog
add 67859ba42a fix(explore): Chart save modal displays error instead of
failing silently (#21920)
No new revisions were added by this update.
Summary of changes:
superset-frontend/src/explore/ExplorePage.tsx | 159 +++++++
.../src/explore/actions/exploreActions.ts | 6 +
.../src/explore/actions/hydrateExplore.test.ts | 212 ++++++++++
.../src/explore/actions/hydrateExplore.ts | 194 +++++++++
.../src/explore/actions/saveModalActions.js | 6 +
.../ExploreChartHeader/ExploreChartHeader.test.tsx | 49 ++-
.../components/ExploreChartHeader/index.jsx | 35 +-
.../components/ExploreViewContainer/index.jsx | 54 ++-
.../src/explore/components/SaveModal.tsx | 466 ++++++++++++++-------
.../src/explore/reducers/exploreReducer.js | 6 +
.../src/explore/reducers/saveModalReducer.js | 3 +
superset-frontend/src/explore/types.ts | 10 +-
12 files changed, 1003 insertions(+), 197 deletions(-)
create mode 100644 superset-frontend/src/explore/ExplorePage.tsx
create mode 100644 superset-frontend/src/explore/actions/hydrateExplore.test.ts
create mode 100644 superset-frontend/src/explore/actions/hydrateExplore.ts