diff --git a/src/js/controllers/tab-send.js b/src/js/controllers/tab-send.js
index 9636fa305..1792ccae1 100644
--- a/src/js/controllers/tab-send.js
+++ b/src/js/controllers/tab-send.js
@@ -114,6 +114,9 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
if (!wallets || !wallets.length) {
$scope.hasFunds = false;
+ $timeout(function() {
+ $scope.$apply();
+ });
}
var index = 0;
@@ -130,6 +133,9 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
}
if (index == wallets.length) {
$scope.hasFunds = $scope.hasFunds || false;
+ $timeout(function() {
+ $scope.$apply();
+ });
}
});
});
diff --git a/www/views/tab-send.html b/www/views/tab-send.html
index 886ea93a7..3432416b4 100644
--- a/www/views/tab-send.html
+++ b/www/views/tab-send.html
@@ -2,8 +2,8 @@
{{'Send' | translate}}
-
-