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