fix(app/container): handle no healthcheck logs output (#2387)

This commit is contained in:
LP B
2026-04-21 13:46:36 +02:00
committed by GitHub
parent 744a31a354
commit 73ea33f36c
@@ -44,7 +44,7 @@ export function HealthStatus({ health }: Props) {
<div className="vertical-center">{health.FailingStreak}</div>
</DetailsTable.Row>
{!!health.Log && (
{!!health.Log?.length && (
<DetailsTable.Row label="Last output">
{health.Log[health.Log.length - 1].Output}
</DetailsTable.Row>