Merge pull request #4101 from gabrielbazan7/master

fix empty contact list in addressbook
This commit is contained in:
Gustavo Maximiliano Cortez 2016-04-21 14:21:43 -03:00
commit 359a96d611
2 changed files with 4 additions and 1 deletions

View file

@ -207,6 +207,9 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
return;
}
$scope.list = ab;
$timeout(function(){
$scope.$digest();
});
});
};