small fix: minus before alternative currency

This commit is contained in:
Sebastiaan Pasma 2018-08-13 14:12:36 +02:00
commit f51542874b
No known key found for this signature in database
GPG key ID: 9A2B0C8B95A1D26F

View file

@ -73,7 +73,7 @@
</span>
<div>
<span class="size-12 wallet-details__tx-amount" ng-class="{'wallet-details__tx-amount--recent': btx.recent, 'wallet-details__tx-amount--received': btx.action == 'received', 'wallet-details__tx-amount--sent': btx.action == 'sent'}">
<formatted-amount value="{{btx.alternativeAmountStr}}"></formatted-amount>
<formatted-amount value="{{btx.action == 'sent'?'-':''}}{{btx.alternativeAmountStr}}"></formatted-amount>
</span>
</div>
</span>