We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc9521 commit aea2af5Copy full SHA for aea2af5
public/views/transaction.html
@@ -52,7 +52,12 @@ <h1>
52
<tfoot>
53
<tr>
54
<td colspan="3" style="text-align: right;">
55
- <button type="button" class="btn btn-primary">{{tx.confirmations}} Confirmations</button>
+ <button data-ng-show="tx.confirmations" type="button" class="btn btn-primary">
56
+ {{tx.confirmations}} Confirmations
57
+ </button>
58
+ <button data-ng-show="!tx.confirmations" type="button" class="btn btn-danger">
59
+ Unconfirmed Transaction!
60
61
<button type="button" class="btn btn-success">{{tx.valueOut}} BTC</button>
62
</td>
63
</tr>
0 commit comments