Minor fixes
This commit is contained in:
parent
889ebb8c6c
commit
1edcf184ee
2 changed files with 2 additions and 2 deletions
|
|
@ -93,7 +93,7 @@
|
||||||
<span ng-show="item.n > 1" class="text-light">
|
<span ng-show="item.n > 1" class="text-light">
|
||||||
{{item.m}}-of-{{item.n}}
|
{{item.m}}-of-{{item.n}}
|
||||||
</span>
|
</span>
|
||||||
<span class="badge badge-assertive" ng-show="!item.isComplete()" translate>
|
<span class="right text-light assertive" ng-show="!item.isComplete()" translate>
|
||||||
Incomplete
|
Incomplete
|
||||||
</span>
|
</span>
|
||||||
<i class="icon nav-item-arrow-right"></i>
|
<i class="icon nav-item-arrow-right"></i>
|
||||||
|
|
|
||||||
|
|
@ -115,7 +115,7 @@ angular.module('copayApp.controllers').controller('tabHomeController',
|
||||||
lodash.each($scope.wallets, function(wallet) {
|
lodash.each($scope.wallets, function(wallet) {
|
||||||
walletService.getStatus(wallet, {}, function(err, status) {
|
walletService.getStatus(wallet, {}, function(err, status) {
|
||||||
if (err) {
|
if (err) {
|
||||||
console.log('[tab-home.js.35:err:]', $log.error(err)); //TODO
|
$log.error(err);
|
||||||
} else {
|
} else {
|
||||||
wallet.status = status;
|
wallet.status = status;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue