From 4a4610bbc3d37dbe0e588336a5454eae9d095796 Mon Sep 17 00:00:00 2001 From: Sven van Ginkel Date: Wed, 23 Sep 2026 00:12:19 +0200 Subject: [PATCH] fix(ui): reflect target response status in network monitor status dot (#2390) Co-authored-by: henrygd --- .../network-monitors-table/network-monitors-columns.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/site/src/components/network-monitors-table/network-monitors-columns.tsx b/internal/site/src/components/network-monitors-table/network-monitors-columns.tsx index 921b30f0..92d25aba 100644 --- a/internal/site/src/components/network-monitors-table/network-monitors-columns.tsx +++ b/internal/site/src/components/network-monitors-table/network-monitors-columns.tsx @@ -146,6 +146,8 @@ export function getMonitorColumns( color = "bg-primary/40" } else if (status === SystemStatus.Down || status === SystemStatus.Pending) { color = "bg-yellow-500" + } else if (monitor.updated && !monitor.res) { + color = "bg-red-500" } return (