mirror of
https://github.com/apache/superset.git
synced 2026-04-10 20:06:13 +00:00
[druid] fixing the having clause in the explore view (#2648)
* [druid] fixing the having clause in the explore view * Backend * Lint * Fixing tests
This commit is contained in:
committed by
GitHub
parent
f10ee13901
commit
29780821e8
@@ -46,11 +46,12 @@ export default class DisplayQueryButton extends React.PureComponent {
|
||||
language: data.language,
|
||||
query: data.query,
|
||||
isLoading: false,
|
||||
error: null,
|
||||
});
|
||||
},
|
||||
error: (data) => {
|
||||
this.setState({
|
||||
error: data.error,
|
||||
error: data.responseJSON ? data.responseJSON.error : 'Error...',
|
||||
isLoading: false,
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user