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'; } }