mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
Fix: No pager in the wallet transactions list
This commit is contained in:
parent
f548d78907
commit
83c35328ed
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ namespace BTCPayServer.Controllers
|
||||||
model.Transactions.Add(vm);
|
model.Transactions.Add(vm);
|
||||||
}
|
}
|
||||||
|
|
||||||
model.Total = model.Transactions.Count;
|
model.Total = preFiltering ? null : model.Transactions.Count;
|
||||||
model.Transactions = model.Transactions.Skip(skip).Take(count)
|
model.Transactions = model.Transactions.Skip(skip).Take(count)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue