From 00b4ee5849f09a13cd8ee8b3c0cfd913199ee0ec Mon Sep 17 00:00:00 2001 From: Sebastiaan Pasma Date: Fri, 13 Jul 2018 14:54:26 +0200 Subject: [PATCH] wallet empty/no wallet fixes --- src/js/controllers/tab-send.js | 5 ++++- www/views/tab-send.html | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/js/controllers/tab-send.js b/src/js/controllers/tab-send.js index 3c73c229c..2ddad8dad 100644 --- a/src/js/controllers/tab-send.js +++ b/src/js/controllers/tab-send.js @@ -116,10 +116,13 @@ angular.module('copayApp.controllers').controller('tabSendController', function( }; var hasWallets = function() { - $scope.wallets = profileService.getWallets({ + $scope.walletsWithFunds = profileService.getWallets({ onlyComplete: true, hasFunds: true }); + $scope.wallets = profileService.getWallets({ + onlyComplete: true, + }); $scope.walletsBch = profileService.getWallets({ onlyComplete: true, coin: 'bch' diff --git a/www/views/tab-send.html b/www/views/tab-send.html index 6bd32398d..05230af06 100644 --- a/www/views/tab-send.html +++ b/www/views/tab-send.html @@ -108,7 +108,7 @@