Fix performance issue on dashboard for big wallets (#3694)

This commit is contained in:
Nicolas Dorier
2022-04-30 12:54:12 +09:00
committed by GitHub
parent 410bd5ab9c
commit a5aeb2a3c1
3 changed files with 26 additions and 20 deletions

View File

@@ -8,7 +8,7 @@ public class StoreNumbersViewModel
public StoreData Store { get; set; }
public WalletId WalletId { get; set; }
public int PayoutsPending { get; set; }
public int Transactions { get; set; }
public int? Transactions { get; set; }
public int RefundsIssued { get; set; }
public int TransactionDays { get; set; }
}