mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-02 13:47:25 -04:00
TxConfirmationDialog: fix displaying of "<" when using fontMonoRegular
This commit is contained in:
@@ -141,7 +141,7 @@ Rectangle {
|
||||
|
||||
function showFiatConversion(valueXMR) {
|
||||
const fiatFee = fiatApiConvertToFiat(valueXMR);
|
||||
return "%1 %2".arg(fiatFee < 0.01 ? "<0.01" : "~" + fiatFee).arg(fiatApiCurrencySymbol());
|
||||
return "%1 %2".arg(fiatFee < 0.01 ? "<0.01" : "~" + fiatFee).arg(fiatApiCurrencySymbol());
|
||||
}
|
||||
|
||||
ColumnLayout {
|
||||
|
||||
Reference in New Issue
Block a user