Skip to content

Commit

Permalink
Fix: Misleading warning when trying to download results of unsaved qu…
Browse files Browse the repository at this point in the history
…ery #4218 (#4219)
  • Loading branch information
ranbena authored Oct 6, 2019
1 parent 3f9d49d commit 2f42b81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function QueryResultsLink(props) {
}

return (
<a target="_self" disabled={props.disabled} href={href}>
<a target="_blank" rel="noopener noreferrer" disabled={props.disabled} href={href} download>
{props.children}
</a>
);
Expand Down

0 comments on commit 2f42b81

Please sign in to comment.