From 6777edffa113afd063db18c811e90a43e6043064 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 7 May 2017 10:15:18 -0400 Subject: [PATCH] remove unneccessary @if --- Project-Unite/Views/Groups/ViewGroup.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project-Unite/Views/Groups/ViewGroup.cshtml b/Project-Unite/Views/Groups/ViewGroup.cshtml index 8409e0a..1aa3d00 100644 --- a/Project-Unite/Views/Groups/ViewGroup.cshtml +++ b/Project-Unite/Views/Groups/ViewGroup.cshtml @@ -20,7 +20,7 @@ } else { - @if (Model.Publicity == 0 || Model.Publicity == 2) + if (Model.Publicity == 0 || Model.Publicity == 2) { @Html.ActionLink("Join", "JoinGroup", "Groups", new { id = Model.Id }, new { @class = "btn btn-default" }) }