diff --git a/srv/static/js/ajaxhelper.js b/srv/static/js/ajaxhelper.js index 6d0ac22..996dc9a 100644 --- a/srv/static/js/ajaxhelper.js +++ b/srv/static/js/ajaxhelper.js @@ -90,7 +90,7 @@ function makeFormQueryParameter(form) continue; // if we disable a form element or hide it via CSS we also don't want to submit its data } const type = formElement.type; - if ((type === 'checkbox' || type === 'radio') && !formElement.checked) { + if ((type === 'button') || ((type === 'checkbox' || type === 'radio') && !formElement.checked)) { continue; } const name = formElement.name;