You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ta...@apache.org on 2020/08/04 23:35:17 UTC

[incubator-superset] branch master updated (523c6b7 -> e040bf7)

This is an automated email from the ASF dual-hosted git repository.

tai pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


    from 523c6b7  fix: update time range select tooltip (#10458)
     add e040bf7  feat: add favorite star to dashboard and chart lists (#10510)

No new revisions were added by this update.

Summary of changes:
 .../cypress/integration/dashboard/fav_star.test.js |  34 +-
 .../{checkbox-half.svg => favorite-selected.svg}   |   5 +-
 .../images/icons/favorite-unselected.svg           |  21 ++
 superset-frontend/package-lock.json                | 382 ++++++++++-----------
 superset-frontend/src/components/FaveStar.jsx      |  65 ----
 superset-frontend/src/components/FaveStar.tsx      |  88 +++++
 superset-frontend/src/components/Icon.tsx          |   6 +
 .../src/dashboard/components/Header.jsx            |  44 ++-
 .../src/explore/components/ExploreChartHeader.jsx  |  40 ++-
 .../src/views/CRUD/chart/ChartList.tsx             |  34 +-
 .../src/views/CRUD/dashboard/DashboardList.tsx     |  34 +-
 superset-frontend/src/views/CRUD/utils.tsx         |  54 +++
 12 files changed, 506 insertions(+), 301 deletions(-)
 copy superset-frontend/images/icons/{checkbox-half.svg => favorite-selected.svg} (50%)
 create mode 100644 superset-frontend/images/icons/favorite-unselected.svg
 delete mode 100644 superset-frontend/src/components/FaveStar.jsx
 create mode 100644 superset-frontend/src/components/FaveStar.tsx