mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-02-02 04:57:35 +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)
|
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
|
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>
|
</ul>
|
Loading…
Add table
Reference in a new issue