From 5a5ebe843567fee662ab8e16c07b4fe32affa38f Mon Sep 17 00:00:00 2001 From: softsimon Date: Mon, 6 Mar 2023 16:16:52 +0900 Subject: [PATCH] Remove fiat plus space fixes #3240 --- frontend/src/app/components/amount/amount.component.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/components/amount/amount.component.html b/frontend/src/app/components/amount/amount.component.html index 27fd59110..29f61ca41 100644 --- a/frontend/src/app/components/amount/amount.component.html +++ b/frontend/src/app/components/amount/amount.component.html @@ -1,7 +1,6 @@ - {{ addPlus && satoshis >= 0 ? '+' : '' }} - {{ + {{ addPlus && satoshis >= 0 ? '+' : '' }}{{ ( (blockConversion.price[currency] > -1 ? blockConversion.price[currency] : null) ?? (blockConversion.price['USD'] > -1 ? blockConversion.price['USD'] * blockConversion.exchangeRates['USD' + currency] : null) ?? 0 @@ -9,8 +8,7 @@ }} - {{ addPlus && satoshis >= 0 ? '+' : '' }} - {{ (conversions[currency] > -1 ? conversions[currency] : 0) * satoshis / 100000000 | fiatCurrency : digitsInfo : currency }} + {{ addPlus && satoshis >= 0 ? '+' : '' }}{{ (conversions[currency] > -1 ? conversions[currency] : 0) * satoshis / 100000000 | fiatCurrency : digitsInfo : currency }}