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
parent 03cde08a3b
commit 04856aecf0
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 1 additions and 1 deletions

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();
};