1
0

auto-git:

[change] settings.html
This commit is contained in:
2025-05-24 19:49:19 +02:00
parent 0863bea921
commit 33362613a5

View File

@@ -102,7 +102,7 @@
// Threshold live speichern + clamp
thresholdInput.addEventListener('blur', async () => {
let v = parseInt(thresholdInput.value, 100);
let v = parseInt(thresholdInput.value, 10);
if (isNaN(v)) v = initialThreshold; // wenn komplett leer gelassen
if (v < 1) v = 1;
if (v > 1000) v = 1000;