open skylink in new tab (#84)

This commit is contained in:
Karol Wypchło 2020-03-11 10:01:13 +01:00 committed by GitHub
parent 7b9f6261c0
commit bb6004f010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ export default function UploadFile({ file, url, status, progress }) {
{status === "processing" && "Processing..."} {status === "processing" && "Processing..."}
{status === "error" && <span className="red-text">Error processing file.</span>} {status === "error" && <span className="red-text">Error processing file.</span>}
{status === "complete" && ( {status === "complete" && (
<a href={url} className="url green-text"> <a href={url} className="url green-text" target="_blank" rel="noopener noreferrer">
{url} {url}
</a> </a>
)} )}