mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 09:16:46 +00:00
Bug fix
This commit is contained in:
parent
74e5b5d1c7
commit
6e2f1df108
@ -75,8 +75,8 @@ const submitForm = () => {
|
||||
.then((res) => {
|
||||
if (!res.ok) {
|
||||
if (document.getElementById("errBox") == null) {
|
||||
controls = document.querySelector(".pure-controls");
|
||||
errBox = document.createElement("p");
|
||||
const controls = document.querySelector(".pure-controls");
|
||||
const errBox = document.createElement("p");
|
||||
errBox.setAttribute("id", "errBox");
|
||||
errBox.setAttribute("style", "color:red");
|
||||
errBox.innerHTML = "Short URL not valid or already in use!";
|
||||
|
Loading…
Reference in New Issue
Block a user