From 9a9ea0a3922c9cb619a7a1714173b50364e3cb10 Mon Sep 17 00:00:00 2001 From: Gregoo Date: Fri, 31 Jan 2025 17:56:51 +0100 Subject: [PATCH] Don't toggle the no confirm button in bulk mode --- static/scripts/socket/set.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/scripts/socket/set.js b/static/scripts/socket/set.js index 01c5106..08e70dd 100644 --- a/static/scripts/socket/set.js +++ b/static/scripts/socket/set.js @@ -259,7 +259,7 @@ class BrickSetSocket extends BrickSocket { this.html_input.disabled = !enabled; } - if (this.html_no_confim) { + if (!this.bulk && this.html_no_confim) { this.html_no_confim.disabled = !enabled; }