mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-20 13:34:37 +01:00
Add currency code to payment request list (#4709)
https://github.com/btcpayserver/btcpayserver/discussions/4619
This commit is contained in:
parent
23761eacc1
commit
040d7670ec
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ namespace BTCPayServer.Controllers
|
|||
var blob = data.GetBlob();
|
||||
return new ViewPaymentRequestViewModel(data)
|
||||
{
|
||||
AmountFormatted = _Currencies.FormatCurrency(blob.Amount, blob.Currency)
|
||||
AmountFormatted = _Currencies.DisplayFormatCurrency(blob.Amount, blob.Currency)
|
||||
};
|
||||
}).ToList();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue