From de44991ea485ee9b00251a50b49ee971b2e2a972 Mon Sep 17 00:00:00 2001 From: Slendy Date: Sun, 18 Sep 2022 15:48:56 -0500 Subject: [PATCH] Fix word wrap on user biographies --- ProjectLighthouse.Servers.Website/Pages/UserPage.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectLighthouse.Servers.Website/Pages/UserPage.cshtml b/ProjectLighthouse.Servers.Website/Pages/UserPage.cshtml index 7612b8bd..47e4fd90 100644 --- a/ProjectLighthouse.Servers.Website/Pages/UserPage.cshtml +++ b/ProjectLighthouse.Servers.Website/Pages/UserPage.cshtml @@ -103,7 +103,7 @@ } else { -

@HttpUtility.HtmlDecode(Model.ProfileUser.Biography)

+

@HttpUtility.HtmlDecode(Model.ProfileUser.Biography)

}