add confirmations item to tx-details
This commit is contained in:
parent
82e3a4af7c
commit
77b59d93fa
1 changed files with 10 additions and 1 deletions
|
|
@ -54,12 +54,21 @@
|
|||
</span>
|
||||
<i class="icon bp-arrow-right"></i>
|
||||
</a>
|
||||
<div class="item single-line" ng-hide="insuffientFunds">
|
||||
<div class="item single-line">
|
||||
<span class="label" translate>Fee</span>
|
||||
<span class="item-note">
|
||||
{{btx.feeStr}}
|
||||
</span>
|
||||
</div>
|
||||
<div class="item single-line">
|
||||
<span class="label" translate>Confirmations</span>
|
||||
<span class="item-note" ng-if="btx.confirmations < 6">
|
||||
{{btx.confirmations}}
|
||||
</span>
|
||||
<span class="item-note" ng-if="btx.confirmations >= 6">
|
||||
6+
|
||||
</span>
|
||||
</div>
|
||||
<div ng-if="actionList[0]">
|
||||
<div class="item item-divider" translate>Timeline</div>
|
||||
<div class="item timeline-item" ng-class="{'action-created' : a.type == 'created' || a.type == 'accept', 'action-rejected' : a.type == 'reject'}" ng-repeat="a in actionList | orderBy: 'time' :true track by $index">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue