From e55c6f82b49581c97a3e6279dbc41b1b70b944a8 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Wed, 29 May 2024 19:14:31 -0500 Subject: [PATCH] fix: Make the link clickable when securecontext is missing --- resources/static/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/static/script.js b/resources/static/script.js index c80bb43..1edb5ac 100644 --- a/resources/static/script.js +++ b/resources/static/script.js @@ -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: ${site}/${link}`, "red"); } }