From 5469442cda7dff841f8cf142aa2c1def7d1d5112 Mon Sep 17 00:00:00 2001 From: Mononaut Date: Sun, 4 Jan 2026 13:02:01 +0000 Subject: [PATCH] fix core hash display on monitoring page --- .../app/components/server-health/server-health.component.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/app/components/server-health/server-health.component.html b/frontend/src/app/components/server-health/server-health.component.html index 28893f103..4a222e632 100644 --- a/frontend/src/app/components/server-health/server-health.component.html +++ b/frontend/src/app/components/server-health/server-health.component.html @@ -38,6 +38,8 @@ @if (type !== 'core' && host.hashes?.[type]) { {{ host.hashes[type].slice(0, 8) || '?' }} + } @else if (host.hashes?.[type]) { + {{ host.hashes[type] || '?' }} } @else { ? }