Browse Source
fix for hover details for exchanged-currency value displays...
broken via recent utils.formatCurrencyValue changes
master
Dan Janosik
5 years ago
No known key found for this signature in database
GPG Key ID: C6F8CE9FFDB2CED2
1 changed files with
1 additions and
1 deletions
-
views/includes/value-display.pug
|
|
@ -19,7 +19,7 @@ if (currencyValue > 0) |
|
|
|
small.ml-1 #{parts.currencyUnit} |
|
|
|
|
|
|
|
else if (currencyFormatInfo.type == "exchanged") |
|
|
|
small.border-dotted.ml-1(data-toggle="tooltip", title=utils.formatCurrencyAmount(currencyValue, coinConfig.defaultCurrencyUnit.name)) #{parts.currencyUnit} |
|
|
|
small.border-dotted.ml-1(data-toggle="tooltip", title=`${utils.formatCurrencyAmount(currencyValue, coinConfig.defaultCurrencyUnit.name).simpleVal} BTC`) #{parts.currencyUnit} |
|
|
|
|
|
|
|
else |
|
|
|
span.text-monospace 0 |