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

@ -1,4 +1,4 @@
<div ng-init="wallets[0] ? selectedWalletsOpt = true : selectedWalletsOpts = false; checkClipboard()"> <div ng-init="wallets[0] ? selectedWalletsOpt = true : selectedWalletsOpt = false; checkClipboard()">
<nav class="tab-bar" ng-style="{'background-color':color}"> <nav class="tab-bar" ng-style="{'background-color':color}">
<section class="left-small"> <section class="left-small">
<a ng-show="!editAddressbook && !addAddressbookEntry" fast-click callback-fn="cancel()" class="p10"> <a ng-show="!editAddressbook && !addAddressbookEntry" fast-click callback-fn="cancel()" class="p10">

View file

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