fix format in specific amount view

This commit is contained in:
Javier 2016-08-05 16:37:57 -03:00
parent 8c7ad1a91d
commit b60eebe35a
1 changed files with 2 additions and 2 deletions

View File

@ -163,8 +163,8 @@ angular.module('copayApp.controllers').controller('inputAmountController', funct
$scope.specificAmountBtc = (amountSat * satToBtc).toFixed(8);
}
$scope.specificAmount = amount;
$scope.specificAlternativeAmount = alternativeAmount;
$scope.specificAmount = profileService.formatAmount(amount * unitToSatoshi, true);
$scope.specificAlternativeAmount = $filter('formatFiatAmount')(alternativeAmount);
$timeout(function() {
$ionicScrollDelegate.resize();
}, 100);