Allow clicks in url change input

Fixes #600
This commit is contained in:
kkapsner 2022-03-17 22:44:52 +01:00
parent bfa355b58d
commit d100932236
1 changed files with 3 additions and 0 deletions

View File

@ -225,6 +225,9 @@
urlCell.removeChild(input);
urlCell.textContent = entry.url;
});
input.addEventListener("click", function(event){
event.stopPropagation();
});
});
urlCell.textContent = entry.url;
row.appendChild(urlCell);