From f498d76c4fefe565d3a7a0373f4424f132bae28d Mon Sep 17 00:00:00 2001 From: LP B Date: Tue, 21 Apr 2026 23:40:03 +0200 Subject: [PATCH] fix(app/container): handle no healthcheck logs output (#2388) --- app/react/docker/containers/ItemView/HealthStatus.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/react/docker/containers/ItemView/HealthStatus.tsx b/app/react/docker/containers/ItemView/HealthStatus.tsx index 1bcd969065..3c0904bffe 100644 --- a/app/react/docker/containers/ItemView/HealthStatus.tsx +++ b/app/react/docker/containers/ItemView/HealthStatus.tsx @@ -44,7 +44,7 @@ export function HealthStatus({ health }: Props) {
{health.FailingStreak}
- {!!health.Log && ( + {!!health.Log?.length && ( {health.Log[health.Log.length - 1].Output}