implemented deletion of locations

This commit is contained in:
2025-10-21 10:17:09 +02:00
parent 59e6a7001d
commit 6c7fbdcde2
6 changed files with 96 additions and 16 deletions

View File

@@ -21,8 +21,12 @@
async function applyEdit(){
let success = await onSet(editValue);
if (success) value = editValue;
editing=false;
if (success) {
value = editValue;
editing=false;
} else {
editValue = value;
}
}
function ignore(evt){