mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-26 07:38:36 -06:00
fix: Make the link clickable when securecontext is missing
This commit is contained in:
parent
6992d27390
commit
e55c6f82b4
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ const copyShortUrl = async (link) => {
|
||||||
showAlert(`Short URL ${link} was copied to clipboard!`, "green");
|
showAlert(`Short URL ${link} was copied to clipboard!`, "green");
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e);
|
console.log(e);
|
||||||
showAlert(`Could not copy short URL to clipboard, please do it manually: ${site}/${link}`, "red");
|
showAlert(`Could not copy short URL to clipboard, please do it manually: <a href=${site}/${link}>${site}/${link}</a>`, "red");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue