diff --git a/src/js/controllers/modals/inputAmount.js b/src/js/controllers/modals/inputAmount.js index 8c2cbf288..5553bce60 100644 --- a/src/js/controllers/modals/inputAmount.js +++ b/src/js/controllers/modals/inputAmount.js @@ -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);