Compare commits

...

3 Commits

3 changed files with 3 additions and 3 deletions

2
actix/Cargo.lock generated
View File

@ -468,7 +468,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chhoto-url"
version = "5.3.0"
version = "5.3.1"
dependencies = [
"actix-files",
"actix-session",

View File

@ -3,7 +3,7 @@
[package]
name = "chhoto-url"
version = "5.3.0"
version = "5.3.1"
edition = "2021"
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
license = "mit"

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.", "red");
showAlert(`Could not copy short URL to clipboard, please do it manually: <a href=${site}/${link}>${site}/${link}</a>`, "red");
}
}