From 5ad94078ed111f08e52cec36408874e28b37a9ea Mon Sep 17 00:00:00 2001
From: Gregoo <versatile.mailbox@gmail.com>
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;
         }