update ui as soon as balance is computed
This commit is contained in:
parent
1f45ecfdc8
commit
972b29b5de
1 changed files with 3 additions and 0 deletions
|
|
@ -92,6 +92,9 @@ angular.module('copayApp.controllers').controller('SidebarController', function(
|
|||
$scope.wallets.push(w);
|
||||
controllerUtils.updateBalance(w, function(err, res) {
|
||||
if (err) return;
|
||||
setTimeout(function() {
|
||||
$scope.$digest();
|
||||
}, 1);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue