receive tab not showing fiat amount on receiving amount ("payment received" screen)
This commit is contained in:
parent
8f2ce2ce12
commit
448679d1a6
1 changed files with 3 additions and 1 deletions
|
|
@ -138,7 +138,9 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi
|
||||||
$scope.paymentReceivedAlternativeAmount = ''; // For when a subsequent payment is received.
|
$scope.paymentReceivedAlternativeAmount = ''; // For when a subsequent payment is received.
|
||||||
txFormatService.formatAlternativeStr($scope.wallet.coin, data.x.out[i].value, function(alternativeStr){
|
txFormatService.formatAlternativeStr($scope.wallet.coin, data.x.out[i].value, function(alternativeStr){
|
||||||
if (alternativeStr) {
|
if (alternativeStr) {
|
||||||
$scope.paymentReceivedAlternativeAmount = alternativeStr;
|
$scope.$apply(function () {
|
||||||
|
$scope.paymentReceivedAlternativeAmount = alternativeStr;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue