fix: show message unconfirmed transactions if there is not transaction confirmed yet
This commit is contained in:
parent
6fc95215ac
commit
aea2af5a1c
@ -52,7 +52,12 @@
|
|||||||
<tfoot>
|
<tfoot>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" style="text-align: right;">
|
<td colspan="3" style="text-align: right;">
|
||||||
<button type="button" class="btn btn-primary">{{tx.confirmations}} Confirmations</button>
|
<button data-ng-show="tx.confirmations" type="button" class="btn btn-primary">
|
||||||
|
{{tx.confirmations}} Confirmations
|
||||||
|
</button>
|
||||||
|
<button data-ng-show="!tx.confirmations" type="button" class="btn btn-danger">
|
||||||
|
Unconfirmed Transaction!
|
||||||
|
</button>
|
||||||
<button type="button" class="btn btn-success">{{tx.valueOut}} BTC</button>
|
<button type="button" class="btn btn-success">{{tx.valueOut}} BTC</button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user