From 9a50215867fccedfd8108810ebea873eb6672f80 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 11 Jan 2026 07:38:52 +0000 Subject: [PATCH] Fix template error: remove invalid .Version reference in manage.html SystemBackend struct does not have a Version field. Updated the backends section to display IsSystem and IsMeta badges instead, matching the original manage.html template. Co-authored-by: mudler <2420543+mudler@users.noreply.github.com> --- core/http/views/spa/manage.html | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/core/http/views/spa/manage.html b/core/http/views/spa/manage.html index 1415a7144..7ac2918b4 100644 --- a/core/http/views/spa/manage.html +++ b/core/http/views/spa/manage.html @@ -218,7 +218,22 @@

{{.Name}}

-

{{.Version}}

+
+ {{ if .IsSystem }} + + System + + {{ else }} + + User + + {{ end }} + {{ if .IsMeta }} + + Meta + + {{ end }} +