1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-12-25 23:28:37 -06:00

fix: Make the link clickable when securecontext is missing

This commit is contained in:
Sayantan Santra 2024-05-29 19:14:31 -05:00
parent 6992d27390
commit e55c6f82b4
Signed by: SinTan1729
GPG key ID: EB3E68BFBA25C85F

View file

@ -129,7 +129,7 @@ const copyShortUrl = async (link) => {
showAlert(`Short URL ${link} was copied to clipboard!`, "green");
} catch (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");
}
}