1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-12-26 07:38:36 -06:00

Confirm before deleting entries

This commit is contained in:
Sayantan Santra 2022-11-09 17:58:15 -06:00
parent 77f835430b
commit b73148706d

View file

@ -54,9 +54,11 @@ const deleteButton = (shortUrl) => {
btn.onclick = e => {
e.preventDefault();
fetch(`/api/${shortUrl}`, {
method: "DELETE"
}).then(_ => refreshData());
if (confirm("Do you want to delete the entry " + shortUrl + "?")) {
fetch(`/api/${shortUrl}`, {
method: "DELETE"
}).then(_ => refreshData());
}
};
return btn;