Disable no confirm checkbox when toggling the form

This commit is contained in:
Gregoo 2025-01-31 16:38:06 +01:00
parent 030345fe6b
commit c02321368a

View File

@ -259,6 +259,10 @@ class BrickSetSocket extends BrickSocket {
this.html_input.disabled = !enabled; this.html_input.disabled = !enabled;
} }
if (this.html_no_confim) {
this.html_no_confim.disabled = !enabled;
}
if (this.html_owners) { if (this.html_owners) {
this.html_owners.querySelectorAll('input').forEach(input => input.disabled = !enabled); this.html_owners.querySelectorAll('input').forEach(input => input.disabled = !enabled);
} }