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