From 33362613a51b6b6f99d8a1c542f8860afb82df99 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 24 May 2025 19:49:19 +0200 Subject: [PATCH] auto-git: [change] settings.html --- settings.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.html b/settings.html index 8b77fd1..de5d758 100644 --- a/settings.html +++ b/settings.html @@ -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;