fixed broken "add task" buttons in Kanban

This commit is contained in:
2025-12-09 10:21:39 +01:00
parent 85faf31bc6
commit a898e5eaa2
2 changed files with 9 additions and 3 deletions

View File

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