This is an automated email from the ASF dual-hosted git repository. lyndsi pushed a commit to branch lyndsi/sql-lab-new-explore-button-functionality-and-move-save-dataset-to-split-save-button in repository https://gitbox.apache.org/repos/asf/superset.git
commit 96da02c8e9f00664b7d3edd994545262ad2fa9d9 Author: Eric Briscoe <[email protected]> AuthorDate: Tue Jun 28 15:32:09 2022 -0700 Fixes bad import caused by merge from master and removes duplicate showSaveDatasetModal check --- .../src/explore/components/controls/DatasourceControl/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx b/superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx index ec5522a2a9..012241a209 100644 --- a/superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx +++ b/superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx @@ -444,7 +444,7 @@ class DatasourceControl extends React.PureComponent { onChange={onChange} /> )} - {showSaveDatasetModal && showSaveDatasetModal && ( + {showSaveDatasetModal && ( <SaveDatasetModal visible={showSaveDatasetModal} onHide={this.toggleSaveDatasetModal}
