mirror of
https://github.com/apache/superset.git
synced 2026-04-15 22:25:15 +00:00
Display no data when async result has zero rows (#2055)
This commit is contained in:
@@ -197,7 +197,7 @@ class ResultSet extends React.PureComponent {
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
} else if (query.resultsKey) {
|
||||
} else if (query.resultsKey && !(data && data.length === 0)) {
|
||||
return (
|
||||
<div>
|
||||
<Alert bsStyle="warning">This query was run asynchronously
|
||||
|
||||
Reference in New Issue
Block a user