From b8bf339a04dfcd7fe73eef77c736655648e4c966 Mon Sep 17 00:00:00 2001 From: amdnaji Date: Tue, 16 Apr 2024 10:12:12 +0000 Subject: [PATCH] Fixed condition for unreachable server --- Manarah.App/Views/Home/Index.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Manarah.App/Views/Home/Index.cshtml b/Manarah.App/Views/Home/Index.cshtml index e8eaf5e..a7c53a6 100644 --- a/Manarah.App/Views/Home/Index.cshtml +++ b/Manarah.App/Views/Home/Index.cshtml @@ -29,7 +29,7 @@

Unreachable servers

-

@Model.Where(s => s.IsReachable).Count()

+

@Model.Where(s => !s.IsReachable).Count()