fix mobile prompt with timeout

This commit is contained in:
Gabriel Bazán 2017-07-10 12:18:19 -03:00
parent 6102423bae
commit af4c45f811
1 changed files with 3 additions and 0 deletions

View File

@ -86,6 +86,9 @@ angular.module('copayApp.controllers').controller('preferencesFeeController', fu
$scope.customFeePerKB = ($scope.feePerSatByte * 1000).toFixed();
setMaxWarning();
setMinWarning();
$timeout(function() {
$scope.$apply();
});
});
};