From 9b7a26585c3fd31e648812e1db48e86b226e9973 Mon Sep 17 00:00:00 2001 From: kisfenyo Date: Tue, 16 Jun 2026 13:13:18 +0200 Subject: [PATCH] fix(settings): render restart button unconditionally MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Vezérlő újraindítása card was accidentally placed inside the {{if .RetrievalPassword}} block, so it was hidden whenever no retrieval password is set (e.g. the demo). Moved it outside so the self-serve restart is always available. Found during live verification of v0.70.0. Co-Authored-By: Claude Opus 4.8 (1M context) --- controller/internal/web/templates/settings.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controller/internal/web/templates/settings.html b/controller/internal/web/templates/settings.html index 992abf6..d9ebe63 100644 --- a/controller/internal/web/templates/settings.html +++ b/controller/internal/web/templates/settings.html @@ -1115,8 +1115,9 @@ window.__registeredPaths=[{{range .StoragePaths}}{{if .Path}}"{{.Path}}",{{end}} +{{end}} - +

Vezérlő újraindítása

@@ -1126,7 +1127,6 @@ window.__registeredPaths=[{{range .StoragePaths}}{{if .Path}}"{{.Path}}",{{end}}

-{{end}}