fix for no wallets
This commit is contained in:
parent
bafdb6c8d0
commit
1ab252535d
1 changed files with 1 additions and 1 deletions
|
|
@ -165,7 +165,7 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi
|
||||||
return w.id == $scope.wallet.id;
|
return w.id == $scope.wallet.id;
|
||||||
});
|
});
|
||||||
if (w) $scope.updateCurrentWallet();
|
if (w) $scope.updateCurrentWallet();
|
||||||
else if (screen.width > 700 && screen.height > 700) {
|
else if (screen.width > 700 && screen.height > 700 && $scope.wallets[0]) {
|
||||||
$scope.setWallet(0)
|
$scope.setWallet(0)
|
||||||
$scope.walletPosition(0);
|
$scope.walletPosition(0);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue