From 0a9892503de67cde5f17ea28a968e68e7b7a51df Mon Sep 17 00:00:00 2001 From: nite Date: Sat, 5 Jul 2025 22:57:46 +0800 Subject: [PATCH] u --- server/static/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/static/index.js b/server/static/index.js index 98decf7..0c99fe0 100644 --- a/server/static/index.js +++ b/server/static/index.js @@ -1,11 +1,9 @@ function setInputReadOnly(input, readonly) { if (readonly) { input.readOnly = true; - input.classList.add('bg-light'); input.style.cursor = 'not-allowed'; } else { input.readOnly = false; - input.classList.remove('bg-light'); input.style.cursor = 'auto'; } }