From 5e1b8170ca9e6093ecde0852c92bd050c31e9c30 Mon Sep 17 00:00:00 2001 From: AAfghahi <48933336+AAfghahi@users.noreply.github.com> Date: Mon, 5 Dec 2022 12:17:31 -0700 Subject: [PATCH] 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], );