You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by aa...@apache.org on 2022/12/05 19:17:40 UTC

[superset] branch master updated: fix: add columns back into SQL Lab to Explore Flow (#22320)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 5e1b8170ca fix: add columns back into SQL Lab to Explore Flow (#22320)
5e1b8170ca is described below

commit 5e1b8170ca9e6093ecde0852c92bd050c31e9c30
Author: AAfghahi <48...@users.noreply.github.com>
AuthorDate: Mon Dec 5 12:17:31 2022 -0700

    fix: add columns back into SQL Lab to Explore Flow (#22320)
---
 superset-frontend/src/SqlLab/components/SaveQuery/index.tsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/src/SqlLab/components/SaveQuery/index.tsx b/superset-frontend/src/SqlLab/components/SaveQuery/index.tsx
index f05c008189..684c4ed39c 100644
--- a/superset-frontend/src/SqlLab/components/SaveQuery/index.tsx
+++ b/superset-frontend/src/SqlLab/components/SaveQuery/index.tsx
@@ -87,6 +87,7 @@ const SaveQuery = ({
   const query = useMemo(
     () => ({
       ...queryEditor,
+      columns,
     }),
     [queryEditor, columns],
   );