You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2020/11/15 01:47:02 UTC

[incubator-superset] 03/05: setup modal flow

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

hugh pushed a commit to branch hugh/SO-1117-modal
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git

commit b2a8d6bf7cc5244ce916fe6a9a1cd8f3b41271e1
Author: hughhhh <hu...@gmail.com>
AuthorDate: Mon Nov 2 09:16:37 2020 -0800

    setup modal flow
---
 superset-frontend/src/SqlLab/components/SaveDatasetModal.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/SqlLab/components/SaveDatasetModal.tsx b/superset-frontend/src/SqlLab/components/SaveDatasetModal.tsx
index acdb279..b7bd1d3 100644
--- a/superset-frontend/src/SqlLab/components/SaveDatasetModal.tsx
+++ b/superset-frontend/src/SqlLab/components/SaveDatasetModal.tsx
@@ -24,7 +24,7 @@ import Modal from 'src/common/components/Modal';
 export const SaveDatasetModal = ({}) => {
   return (
     <Modal show onHide={() => {}} title="Save a new dataset">
-      <div>hello world</div>
+      <div>To explore the results of this query, we need to save it as a virtual dataset</div>
     </Modal>
   );
 };