From b4bdef0908fb3ce1836d79f96dda1e1704fe75d7 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 24 May 2025 20:46:31 +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 3e07d3e..624c31b 100644 --- a/settings.html +++ b/settings.html @@ -123,13 +123,13 @@ if (threshold < 1) threshold = 1; if (threshold > 1000) threshold = 1000; await window.settingsAPI.setIntelligentCommitThreshold(threshold); + alert('OK gedrückt'); // Dropdowns speichern const commitSel = document.getElementById('commitModelSelect'); const readmeSel = document.getElementById('readmeModelSelect'); if (commitSel) await window.settingsAPI.setCommitModel(commitSel.value); if (readmeSel) await window.settingsAPI.setReadmeModel(readmeSel.value); - alert('OK gedrückt'); window.settingsAPI.close(); });