diff --git a/static/scripts/socket/set.js b/static/scripts/socket/set.js index 6459aa6..01c5106 100644 --- a/static/scripts/socket/set.js +++ b/static/scripts/socket/set.js @@ -259,6 +259,10 @@ class BrickSetSocket extends BrickSocket { this.html_input.disabled = !enabled; } + if (this.html_no_confim) { + this.html_no_confim.disabled = !enabled; + } + if (this.html_owners) { this.html_owners.querySelectorAll('input').forEach(input => input.disabled = !enabled); }