From 21a7a8711da951cbce5898fd61f6f68490c5fbad Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 2 Aug 2022 08:11:20 -0500 Subject: [PATCH] Fix posters' comments not showing ratings (#393) --- .../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 c1b9b962..8998a477 100644 --- a/ProjectLighthouse.Servers.Website/Pages/Partials/CommentsPartial.cshtml +++ b/ProjectLighthouse.Servers.Website/Pages/Partials/CommentsPartial.cshtml @@ -52,7 +52,7 @@ string style = ""; if (Model.User?.UserId == comment.PosterUserId) { - style = "visibility: hidden"; + style = "pointer-events: none"; } }