mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-01-22 17:22:15 +00:00
remove unneeded @if
This commit is contained in:
parent
642b082c34
commit
ab87ec6597
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@
|
|||
<ul class="pagination">
|
||||
@for(int i = 1; i <= Model.PageCount; i++)
|
||||
{
|
||||
@if (i == Model.CurrentPage)
|
||||
if (i == Model.CurrentPage)
|
||||
{
|
||||
<li class="active">@Html.ActionLink(i.ToString(), "Pong", "Stats", null, new { id = i })</li>
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue