From b1e4f57c9b45cc7fd50e4315343c992c3ed0a699 Mon Sep 17 00:00:00 2001 From: kisfenyo Date: Wed, 25 Feb 2026 20:45:01 +0100 Subject: [PATCH] Show subdomain URL on protected stack cards (e.g. FileBrowser) Protected stacks like FileBrowser have no app.yaml so Deployed=false, which caused the URL link condition to fail. Now also shows the URL when the stack is protected. Co-Authored-By: Claude Opus 4.6 --- controller/internal/web/templates/stacks.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/internal/web/templates/stacks.html b/controller/internal/web/templates/stacks.html index 4c2f5cf..343e1e9 100644 --- a/controller/internal/web/templates/stacks.html +++ b/controller/internal/web/templates/stacks.html @@ -25,7 +25,7 @@

{{.Meta.DisplayName}}

{{$subdomain := index $.Subdomains .Name}} - {{if and $subdomain .Deployed}} + {{if and $subdomain (or .Deployed .Protected)}} {{$subdomain}}.{{$.Domain}} ↗