[Fix] Display fee in sats (#3235)

This commit is contained in:
Tiago Vasconcelos
2025-07-15 11:14:02 +02:00
committed by dni ⚡
parent 88b01e6079
commit 5765ea0276
+4 -2
View File
@@ -60,10 +60,10 @@ window.PaymentsPageLogic = {
sortable: false
},
{
name: 'fee',
name: 'fee_sats',
align: 'left',
label: 'Fee',
field: 'fee',
field: 'fee_sats',
sortable: true
},
@@ -166,6 +166,8 @@ window.PaymentsPageLogic = {
p.extra.wallet_fiat_currency
)
}
p.fee_sats =
new Intl.NumberFormat(window.LOCALE).format(p.fee / 1000) + ' sats'
return p
})