fix: set reference to columns properly for sqllab -> explore (#20747)

* set reference to columns properly

* fix logic
This commit is contained in:
Hugh A. Miles II
2022-07-18 12:32:31 -04:00
committed by GitHub
parent 5990ea639e
commit 510c1c4817
2 changed files with 8 additions and 7 deletions

View File

@@ -27,6 +27,7 @@ import {
t,
useTheme,
getChartMetadataRegistry,
DatasourceType,
} from '@superset-ui/core';
import { useResizeDetector } from 'react-resize-detector';
import { chartPropShape } from 'src/dashboard/util/propShapes';
@@ -153,8 +154,8 @@ const ExploreChartPanel = ({
const metaDataRegistry = getChartMetadataRegistry();
const { useLegacyApi } = metaDataRegistry.get(vizType);
const vizTypeNeedsDataset = useLegacyApi && datasource.type !== 'dataset';
const vizTypeNeedsDataset =
useLegacyApi && datasource.type !== DatasourceType.Table;
// added boolean column to below show boolean so that the errors aren't overlapping
const showAlertBanner =
!chartAlert &&