Skip to content
This repository has been archived by the owner on Nov 21, 2019. It is now read-only.

Commit

Permalink
fixes #738
Browse files Browse the repository at this point in the history
  • Loading branch information
tayvano committed Jul 16, 2017
1 parent dc8ea35 commit fa7a8fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/scripts/directives/balanceDrtv.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ <h5 translate="sidebar_TokenBal">Token Balances:</h5>
ng-show="token.balance!=0 && token.balance!='loading' || token.type!=='default' || tokenVisibility=='shown'">
<td class="mono wrap point" title="{{token.getBalance()}} (Double-Click)" ng-dblclick="showLongToken=!showLongToken">
<img src="images/icon-remove.svg" class="token-remove" title="Remove Token" ng-click="removeTokenFromLocal(token.symbol)" ng-show="token.type!=='default'" />
<span ng-show="!showLongToken || token.type=='default'">{{token.getBalance() | number}}</span>
<span ng-show="showLongToken || token.type!=='default'">{{token.getBalance() }}</span>
<span ng-show="!showLongToken && token.type=='default'">{{token.getBalance() | number}}</span>
<span ng-show="showLongToken">{{token.getBalance() }}</span>
</td>
<td>{{token.getSymbol()}}</td>
</tr>
Expand Down

0 comments on commit fa7a8fd

Please sign in to comment.