pushbutton changed to link in left column

This commit is contained in:
Daniel
2025-05-01 14:32:31 +02:00
parent 0542f41ec0
commit 715381c088
4 changed files with 95 additions and 131 deletions

View File

@ -216,7 +216,6 @@ function updateTarget(component) {
let matches = document.getElementsByName(component.name);
let elem = matches[0]; // Should be the only match
elem.value = component.value;
let row = elem.closest('div');
row.classList.remove('row-waiting-for-answer');
@ -229,7 +228,9 @@ function updateTarget(component) {
}
}
elem.actualValue = component.value;
resizeTextfield(elem);
if(elem.__ctype__ == 'input') {
resizeTextfield(elem);
}
}
function updateStatus(component) {