formatted-amount for transaction proposals and wallet activity.

This commit is contained in:
Brendon Duncan 2018-08-10 14:17:42 +12:00
commit 18c8f4cf07
2 changed files with 7 additions and 7 deletions

View file

@ -24,7 +24,7 @@
(possible double spend)
</span>
<span ng-if="tx.action != 'invalid'">
{{tx.amountStr}}
<formatted-amount value={{tx.amountStr}}></formatted-amount>
</span>
</span>
<div>

View file

@ -10,7 +10,7 @@
<div ng-if="notification.type == 'NewOutgoingTx'">
<span translate>Payment Sent </span>
<div class="wallet-activity-amount">
{{notification.amountStr}}
<formatted-amount value={{notification.amountStr}}
</div>
</div>
@ -19,7 +19,7 @@
<div ng-if="notification.type == 'NewIncomingTx'">
<span translate>Payment Received</span>
<div class="wallet-activity-amount">
{{notification.amountStr}}
<formatted-amount value={{notification.amountStr}}></formatted-amount>
</div>
</div>
@ -27,7 +27,7 @@
<span translate>Proposal Deleted</span>:
<b>{{notification.message}}</b>
<div class="wallet-activity-amount">
{{notification.amountStr}}:
<formatted-amount value={{notification.amountStr}}></formatted-amount>:
</div>
</div>
@ -35,7 +35,7 @@
<span translate>Proposal Rejected</span>:
<b>{{notification.message}}</b>
<div class="wallet-activity-amount">
{{notification.amountStr}}:
<formatted-amount value={{notification.amountStr}}></formatted-amount>:
</div>
</div>
@ -43,7 +43,7 @@
<span translate>New Proposal</span>:
<b>{{notification.message}}</b>
<div class="wallet-activity-amount">
{{notification.amountStr}}
<formatted-amount value={{notification.amountStr}}></formatted-amount>
</div>
</span>
@ -51,7 +51,7 @@
<span translate>Proposal Accepted</span>:
<b>{{notification.message}}</b>
<div class="wallet-activity-amount">
{{notification.amountStr}}
<formatted-amount value={{notification.amountStr}}></formatted-amount>
</div>
</span>