Merge pull request #28 from cmgustavo/bug/transaction-page-if-no-confirmations
fix: show message unconfirmed transactions...
This commit is contained in:
commit
e0056ccc26
@ -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