From a30b217d1b59537b6f2d018c4264cb052e705911 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 25 May 2025 21:47:18 +0200 Subject: [PATCH] Fix typo in ellapsedMinutesInput variable name in settings.html --- settings.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.html b/settings.html index 8a73354..e7cf49f 100644 --- a/settings.html +++ b/settings.html @@ -163,7 +163,7 @@ const cbSky = document.getElementById('skymode'); const cbSkip = document.getElementById('skipPrompt'); const thresholdInput = document.getElementById('intelligentCommitThresholdInput'); - const ellapsedMinutesInput = document.getElementById('intelligentCommitThresholdInput'); + const ellapsedMinutesInput = document.getElementById('intelligentCommitMinutesInput'); const ok = document.getElementById('okBtn'); const cancel = document.getElementById('cancelBtn'); const cbAutostart = document.getElementById('autostart');