Fix: Misleading warning when trying to download results of unsaved query #4218 (#4219)

This commit is contained in:
Ran Byron
2019-10-06 16:00:24 +03:00
committed by GitHub
parent 3f9d49dbd1
commit 2f42b8154c

View File

@@ -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>
);