fix empty contact list in addressbook

This commit is contained in:
Gabriel Bazán 2016-04-21 11:14:48 -03:00
commit 7fe63e403c
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();
});
});
};