Commit 7727f3d0 authored by dev0tion's avatar dev0tion

Correctly show transaction id

parent c4c8e131
<h1>History</h1> <h1>History</h1>
<table *ngIf="transactions"> <table *ngIf="transactions">
<thead> <thead>
<th>Timestamp</th> <th>Timestamp</th>
<th>Amount</th> <th>Amount</th>
...@@ -10,6 +10,6 @@ ...@@ -10,6 +10,6 @@
<td>{{ transaction.timestamp }}</td> <td>{{ transaction.timestamp }}</td>
<td>{{ transaction.amount }}</td> <td>{{ transaction.amount }}</td>
<td>{{ transaction.confirmed }}</td> <td>{{ transaction.confirmed }}</td>
<td>{{ transaction.txid }}</td> <td>{{ transaction.txId }}</td>
</tr> </tr>
</table> </table>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment