mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-20 13:34:37 +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.Total = model.Transactions.Count;
|
||||
model.Total = preFiltering ? null : model.Transactions.Count;
|
||||
model.Transactions = model.Transactions.Skip(skip).Take(count)
|
||||
.ToList();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue