Remove peer card from proxy error page

This commit is contained in:
Eduard Gert
2026-02-10 14:39:25 +01:00
parent a803f47685
commit ba9158d159
5 changed files with 25 additions and 30 deletions

View File

@@ -143,7 +143,6 @@ func setContentType(w http.ResponseWriter, filePath string) {
// ErrorStatus represents the connection status for each component in the error page.
type ErrorStatus struct {
Proxy bool
Peer bool
Destination bool
}
@@ -156,7 +155,6 @@ func ServeErrorPage(w http.ResponseWriter, r *http.Request, code int, title, mes
"title": title,
"message": message,
"proxy": status.Proxy,
"peer": status.Peer,
"destination": status.Destination,
"requestId": requestID,
},