fix refresh error on tab-receive

This commit is contained in:
Matias Alejo Garcia 2016-10-15 10:28:30 -03:00
parent f9fd629734
commit e771834edf
No known key found for this signature in database
GPG Key ID: 02470DB551277AB3
1 changed files with 4 additions and 1 deletions

View File

@ -23,7 +23,10 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi
if (err) popupService.showAlert(gettextCatalog.getString('Error'), err);
$scope.addr = addr;
if ($scope.wallet.showBackupNeededModal) $scope.openBackupNeededModal();
$scope.$apply();
$timeout(function(){
$scope.$apply();
},10);
});
};