This commit is contained in:
Gabriel Bazán 2016-11-14 14:17:10 -03:00
parent a30845d686
commit d07ca68916
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ angular.module('copayApp.controllers').controller('tabHomeController',
walletService.getStatus(wallet, {}, function(err, status) {
if (err) {
if (err === 'WALLET_NOT_REGISTERED') wallet.error = gettextCatalog.getString('Wallet not registered');
else wallet.error = err;
else wallet.error = gettextCatalog.getString('Could not update');;
$log.error(err);
} else {
wallet.error = null;

View File

@ -87,7 +87,7 @@
<span class="tab-home__wallet__multisig-number" ng-if="wallet.n > 1">
{{wallet.m}}-of-{{wallet.n}}
</span>
<span ng-if="wallet.error" translate>{{wallet.error}}</span>
<span class="assertive" ng-if="wallet.error" translate>{{wallet.error}}</span>
</span>
&nbsp;
</p>