Skip to content

Commit

Permalink
fix: set reference to columns properly for sqllab -> explore (#20747)
Browse files Browse the repository at this point in the history
* set reference to columns properly

* fix logic
  • Loading branch information
hughhhh committed Jul 18, 2022
1 parent 5990ea6 commit 510c1c4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions superset-frontend/src/SqlLab/components/ResultSet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,12 +225,12 @@ export default class ResultSet extends React.PureComponent<
const { query } = this.props;

const datasource: ISaveableDatasource = {
columns: query.columns as ISimpleColumn[],
columns: query.results.columns as ISimpleColumn[],
name: query?.tab || 'Untitled',
dbId: 1,
sql: query.sql,
templateParams: query.templateParams,
schema: query.schema,
dbId: query?.dbId,
sql: query?.sql,
templateParams: query?.templateParams,
schema: query?.schema,
};

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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 &&
Expand Down

0 comments on commit 510c1c4

Please sign in to comment.