Merge pull request #4027 from matiu/bug/isComplete

fix isComplete call
This commit is contained in:
Gustavo Maximiliano Cortez 2016-03-28 15:48:04 -03:00
commit 7b6e79964e
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
self.resetForm();
$scope.search = '';
if (profileService.focusedClient && profileService.focusedClient.isComplete) {
if (profileService.focusedClient && profileService.focusedClient.isComplete()) {
self.setAddress();
self.setSendFormInputs();
}