uppercase pipes

This commit is contained in:
Sebastiaan Pasma 2018-07-19 15:41:06 +02:00
commit 00ca5cded6
No known key found for this signature in database
GPG key ID: 9A2B0C8B95A1D26F
2 changed files with 4 additions and 4 deletions

View file

@ -79,7 +79,7 @@ angular.module('copayApp.controllers').controller('customAmountController', func
var btcParsedAmount = txFormatService.parseAmount($scope.wallet.coin, amountUnit, $scope.wallet.coin);
$scope.amountBtc = btcParsedAmount.amount;
$scope.altAmountStr = btcParsedAmount.amountUnitStr.toUpperCase();
$scope.altAmountStr = btcParsedAmount.amountUnitStr;
} else {
$scope.amountBtc = amount; // BTC or BCH
$scope.altAmountStr = txFormatService.formatAlternativeStr($scope.wallet.coin, parsedAmount.amountSat);