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 a31625c17efdf7f5b73b26da2c4d1081737d13b9 Author: Eric Briscoe <[email protected]> AuthorDate: Wed Jun 8 15:48:31 2022 -0700 Added Query preview Modal from DatasourceControl if the data source type is Query [41493] Initial commit to add ability for the a Query Preview Modal to be available when the data source type is Query and not Dataset Converted ModalTrigger to a functional TypeScript component --- .../src/explore/components/useExploreAdditionalActionsMenu/index.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx b/superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx index e75e91bba7..cc046c19e6 100644 --- a/superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx +++ b/superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx @@ -31,6 +31,7 @@ import copyTextToClipboard from 'src/utils/copy'; import HeaderReportDropDown from 'src/components/ReportModal/HeaderReportDropdown'; import ViewQueryModal from '../controls/ViewQueryModal'; import EmbedCodeContent from '../EmbedCodeContent'; +import ViewQueryModalFooter from '../controls/ViewQueryModalFooter'; const MENU_KEYS = { EDIT_PROPERTIES: 'edit_properties',
