From 48469b03dbf5c3259a86338a1a27d83e456309e7 Mon Sep 17 00:00:00 2001 From: triggermeelmo Date: Wed, 21 Jan 2026 12:33:14 +0100 Subject: [PATCH] Fixed Container Col on Dashboard --- watcher-monitoring/Views/Home/Index.cshtml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/watcher-monitoring/Views/Home/Index.cshtml b/watcher-monitoring/Views/Home/Index.cshtml index 784a91b..bc28b5d 100644 --- a/watcher-monitoring/Views/Home/Index.cshtml +++ b/watcher-monitoring/Views/Home/Index.cshtml @@ -77,18 +77,20 @@
-

Monitored Containers

+

Container Issues

    @if (Model.containers != null && Model.containers.Count > 0) { @foreach (var container in Model.containers) { -
  • -
    - @container.Name - Container Image -
    -
  • + @if (container.State != "online") { +
  • +
    + @container.Name + Container Image +
    +
  • + } } } else