Skip to content

Commit b797e40

Browse files
committed
use amountSent to avoid particial payment
1 parent 1f9d802 commit b797e40

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

directive/tx-payment.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<div class="transaction">
77
<span ng-show="tx.transaction.type == 'sent'">
88
{{'you_sent' | translate}}
9-
<strong>{{tx.transaction.amount | rpamount}} {{tx.transaction.amount | rpcurrency:native.code}}</strong>
9+
<strong>{{tx.transaction.amountSent | rpamount}} {{tx.transaction.amountSent | rpcurrency:native.code}}</strong>
1010
{{'you_sent_to' | translate}}
1111
<strong>{{tx.transaction.counterparty}}</strong>
1212
</span>
1313
<span ng-show="tx.transaction.type == 'received'">
1414
<strong>{{tx.transaction.counterparty}}</strong>
1515
{{'sent_you' | translate}}
16-
<strong>{{tx.transaction.amount | rpamount}} {{tx.transaction.amount | rpcurrency:native.code}}</strong>
16+
<strong>{{tx.transaction.amountSent | rpamount}} {{tx.transaction.amountSent | rpcurrency:native.code}}</strong>
1717
</span>
1818
<span ng-show="tx.tag">{{'tx_tag' | translate}} <strong>{{tx.tag}}</strong>)</span>
1919

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "FoxletRipple",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "RippleFox Client",
55
"main": "main.js",
66
"scripts": {

0 commit comments

Comments
 (0)