Skip to content

Commit

Permalink
Display no data when async result has zero rows
Browse files Browse the repository at this point in the history
  • Loading branch information
vera-liu committed Jan 26, 2017
1 parent 470a6e9 commit 2ea202b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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 &nbsp;
Expand Down

0 comments on commit 2ea202b

Please sign in to comment.