diff options
| author | Michael <[email protected]> | 2017-05-07 10:15:18 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-07 10:15:18 -0400 |
| commit | 6777edffa113afd063db18c811e90a43e6043064 (patch) | |
| tree | 7934729247f7915b0b7f7f4c85618f9e1c3cd4f1 /Project-Unite/Views/Groups | |
| parent | e013a6e4bff26aa5ab611dba8c26131e3773eac7 (diff) | |
| download | project-unite-6777edffa113afd063db18c811e90a43e6043064.tar.gz project-unite-6777edffa113afd063db18c811e90a43e6043064.tar.bz2 project-unite-6777edffa113afd063db18c811e90a43e6043064.zip | |
remove unneccessary @if
Diffstat (limited to 'Project-Unite/Views/Groups')
| -rw-r--r-- | Project-Unite/Views/Groups/ViewGroup.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
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" }) } |
