Merge pull request #5208 from gabrielbazan7/fix/hideBalanceReceive

hide balance on wallet selector
This commit is contained in:
Gustavo Maximiliano Cortez 2016-12-12 15:09:02 -03:00 committed by GitHub
commit 4ad78283fa
1 changed files with 2 additions and 1 deletions

View File

@ -7,9 +7,10 @@
<img src="img/icon-wallet.svg" ng-style="{'background-color': wallet.color}" class="bg"/>
</i>
<span class="wallet-name">{{wallet.name || wallet.id}}</span>
<span class="item-note m10l">
<span class="item-note m10l" ng-if="!wallet.balanceHidden">
{{wallet.status.availableBalanceStr}}
</span>
<span class="item-note m10l" ng-if="wallet.balanceHidden" translate>[Balance Hidden]</span>
</div>
</div>
</ion-slide-page>