more descriptive label for confirming txs

This commit is contained in:
Marty Alcala 2016-11-15 13:21:33 -05:00
commit 9018ccd39a
2 changed files with 4 additions and 2 deletions

View file

@ -18,7 +18,8 @@
</div>
<div class="sending-label" ng-if="btx.confirmations === 0">
<img src="img/icon-confirming.svg">
<span translate>Confirming</span>
<span ng-if="btx.action == 'sent' || btx.action == 'moved'">Sending</span>
<span ng-if="btx.action == 'received'">Receiving</span>
</div>
<div class="amount-label">
<div class="amount">{{displayAmount}} <span class="unit">{{displayUnit}}</span></div>

View file

@ -235,7 +235,8 @@
<div class="wallet-details__tx-title" ng-if="isUnconfirmed(btx)">
<div class="ellipsis" style="color: #B4B4B4;">
Confirming
<span ng-if="btx.action == 'sent' || btx.action == 'moved'">Sending</span>
<span ng-if="btx.action == 'received'">Receiving</span>
</div>
</div>