Skip to content

Commit

Permalink
Merge pull request #2997
Browse files Browse the repository at this point in the history
f1b4eb6 history: remove trailing zeros in amount + fix amount display (rating89us)
  • Loading branch information
luigi1111 committed Jul 8, 2020
2 parents 38c3534 + f1b4eb6 commit b7b1221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/History.qml
Original file line number Diff line number Diff line change
Expand Up @@ -1511,7 +1511,7 @@ Rectangle {
"i": i,
"isout": isout,
"amount": Number(amount),
"displayAmount": displayAmount + " XMR",
"displayAmount": Utils.removeTrailingZeros(displayAmount.toFixed(12)) + " XMR",
"hash": hash,
"paymentId": paymentId,
"address": address,
Expand Down

0 comments on commit b7b1221

Please sign in to comment.