Don't toggle the no confirm button in bulk mode

This commit is contained in:
Gregoo 2025-01-31 17:56:51 +01:00
parent 739d933900
commit 5ad94078ed

View File

@ -259,7 +259,7 @@ class BrickSetSocket extends BrickSocket {
this.html_input.disabled = !enabled; this.html_input.disabled = !enabled;
} }
if (this.html_no_confim) { if (!this.bulk && this.html_no_confim) {
this.html_no_confim.disabled = !enabled; this.html_no_confim.disabled = !enabled;
} }