From 378a780df23ddfdd3c9bbeea4a6a07e72d9ef065 Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Mon, 28 Aug 2017 00:00:37 -0300 Subject: [PATCH] Currency in uppercase --- src/js/controllers/amount.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/controllers/amount.js b/src/js/controllers/amount.js index 03e9743af..167200e1d 100644 --- a/src/js/controllers/amount.js +++ b/src/js/controllers/amount.js @@ -234,7 +234,7 @@ angular.module('copayApp.controllers').controller('amountController', function($ $state.transitionTo($scope.nextStep, { id: _id, amount: $scope.useSendMax ? null : _amount, - currency: $scope.showAlternativeAmount ? $scope.alternativeIsoCode : $scope.coin, + currency: $scope.showAlternativeAmount ? $scope.alternativeIsoCode : ($scope.coin).toUpperCase(), coin: $scope.coin, useSendMax: $scope.useSendMax });