You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2023/06/14 22:54:16 UTC

[superset] branch master updated (19a94009b0 -> d2b0b8eac5)

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

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


    from 19a94009b0 fix: Fixes #24391 (Problems with celery beat running with docker when the machine is rebooted suddenly) (#24392)
     add d2b0b8eac5 feat: make data tables support html (#24368)

No new revisions were added by this update.

Summary of changes:
 superset-frontend/package-lock.json                | 101 ++++++------------
 .../packages/superset-ui-core/package.json         |   3 +-
 .../superset-ui-core/src/utils/html.test.tsx       | 113 +++++++++++++++++++++
 .../packages/superset-ui-core/src/utils/html.tsx   |  53 ++++++++++
 .../packages/superset-ui-core/src/utils/index.ts   |   1 +
 .../src/components/Tooltip.tsx                     |  27 +----
 .../plugin-chart-table/src/utils/formatValue.ts    |  31 +-----
 .../Chart/DrillDetail/DrillDetailMenuItems.tsx     |  21 +++-
 .../Chart/DrillDetail/DrillDetailPane.tsx          |   1 +
 .../src/components/FilterableTable/index.tsx       |  13 ++-
 .../src/components/Table/VirtualTable.tsx          |  17 +++-
 superset-frontend/src/components/Table/index.tsx   |   7 ++
 .../src/components/TableCollection/index.tsx       |   1 -
 .../explore/components/DataTableControl/index.tsx  |   5 +
 .../DataTablesPane/components/SamplesPane.tsx      |   2 +
 .../components/SingleQueryResultPane.tsx           |   2 +
 16 files changed, 267 insertions(+), 131 deletions(-)
 create mode 100644 superset-frontend/packages/superset-ui-core/src/utils/html.test.tsx
 create mode 100644 superset-frontend/packages/superset-ui-core/src/utils/html.tsx