Fix delete amount after paste a value (only desktop)

This commit is contained in:
Gustavo Maximiliano Cortez 2017-04-20 11:48:44 -03:00
commit 04856aecf0
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF

View file

@ -165,7 +165,7 @@ angular.module('copayApp.controllers').controller('amountController', function($
};
$scope.removeDigit = function() {
$scope.amount = $scope.amount.slice(0, -1);
$scope.amount = ($scope.amount).toString().slice(0, -1);
processAmount();
checkFontSize();
};