You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by yo...@apache.org on 2022/10/03 03:01:05 UTC

[superset] branch master updated (157482955e -> 8d1b7ecfde)

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

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


    from 157482955e chore: avoid undefined property on `Global` type (#21631)
     add 8d1b7ecfde fix(sqllab): perf regression on #21532 refactor (#21632)

No new revisions were added by this update.

Summary of changes:
 superset-frontend/spec/helpers/testing-library.tsx |   2 +-
 .../AceEditorWrapper/AceEditorWrapper.test.tsx     |   2 +-
 .../SqlLab/components/AceEditorWrapper/index.tsx   |  18 ++-
 .../QueryLimitSelect/QueryLimitSelect.test.tsx     |  24 ++-
 .../SqlLab/components/QueryLimitSelect/index.tsx   |  19 +--
 .../RunQueryActionButton.test.tsx                  | 177 +++++++++++----------
 .../components/RunQueryActionButton/index.tsx      |  40 ++---
 .../{SaveQuery.test.jsx => SaveQuery.test.tsx}     |  55 ++++---
 .../src/SqlLab/components/SaveQuery/index.tsx      |  79 ++++-----
 ...LabQuery.test.jsx => ShareSqlLabQuery.test.tsx} |  59 ++++---
 .../SqlLab/components/ShareSqlLabQuery/index.tsx   |  21 +--
 .../src/SqlLab/components/SqlEditor/index.jsx      |  23 ++-
 .../SqlLab/components/SqlEditorLeftBar/index.tsx   |  14 +-
 .../hooks/useQueryEditor/index.ts}                 |  36 ++---
 .../hooks/useQueryEditor/useQueryEditor.test.ts    |  92 +++++++++++
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |   2 +-
 16 files changed, 388 insertions(+), 275 deletions(-)
 rename superset-frontend/src/SqlLab/components/SaveQuery/{SaveQuery.test.jsx => SaveQuery.test.tsx} (89%)
 rename superset-frontend/src/SqlLab/components/ShareSqlLabQuery/{ShareSqlLabQuery.test.jsx => ShareSqlLabQuery.test.tsx} (85%)
 copy superset-frontend/src/{dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/types.ts => SqlLab/hooks/useQueryEditor/index.ts} (56%)
 create mode 100644 superset-frontend/src/SqlLab/hooks/useQueryEditor/useQueryEditor.test.ts