1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

make recent clients pagination load 20 per request

This commit is contained in:
RaidMax
2022-04-25 16:13:18 -05:00
parent eec6fb4997
commit 840ff2cad9
2 changed files with 3 additions and 3 deletions

View File

@ -319,9 +319,9 @@ namespace WebfrontCore.Controllers
{
ViewBag.First = request.Offset == 0;
if (request.Count > 30)
if (request.Count > 20)
{
request.Count = 30;
request.Count = 20;
}
var clients = await Manager.GetClientService().GetRecentClients(request);