fix settings modal not opening from dashboard

Alessandro committed Mar 23, 2026 at 16:57 UTC 132612bf3a7092b9b81f09294b076c60830b583f
1 file changed +1 -5
webui/components/welcome/welcome-store.js
+1 -5
@@ -200,11 +200,7 @@ const model = {
200 window.openModal("modals/scheduler/scheduler-modal.html");
201 break;
202 case "settings":
203 - // Open settings modal
204 - const settingsButton = document.getElementById("settings");
205 - if (settingsButton) {
206 - settingsButton.click();
207 - }
203 + window.openModal("settings/settings.html");
204 break;
205 case "projects":
206 projectsStore.openProjectsModal();