From d119bacd772a9a3374073ca87195d72c0819bc28 Mon Sep 17 00:00:00 2001 From: koko <68549366+sudokoko@users.noreply.github.com> Date: Thu, 26 Jan 2023 19:58:30 -0500 Subject: [PATCH] Fix >50 comments message --- .../Pages/Partials/CommentsPartial.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectLighthouse.Servers.Website/Pages/Partials/CommentsPartial.cshtml b/ProjectLighthouse.Servers.Website/Pages/Partials/CommentsPartial.cshtml index 80182239..4c1a6c1d 100644 --- a/ProjectLighthouse.Servers.Website/Pages/Partials/CommentsPartial.cshtml +++ b/ProjectLighthouse.Servers.Website/Pages/Partials/CommentsPartial.cshtml @@ -26,7 +26,7 @@ Comments are disabled. } - else if (Model.Comments.Count > 50) + else if (Model.Comments.Count >= 50) {

There are more than 50 comments. Displaying the newest ones.

}