Adding Lightning wrapper component

This commit is contained in:
softsimon
2022-05-06 16:31:25 +04:00
parent d23e5d0e87
commit 31d280f729
6 changed files with 45 additions and 11 deletions

View File

@@ -16,9 +16,13 @@
<div class="col-md">
<table class="table table-borderless table-striped">
<tbody>
<tr>
<td i18n="address.total-sent">Created</td>
<td><app-time-since [dateString]="channel.created"></app-time-since></td>
</tr>
<tr>
<td i18n="address.total-sent">Last update</td>
<td>{{ channel.updated_at | date:'yyyy-MM-dd HH:mm' }}</td>
<td><app-time-since [dateString]="channel.updated_at"></app-time-since></td>
</tr>
<tr>
<td i18n="address.total-sent">Transaction ID</td>
@@ -38,7 +42,7 @@
<tbody>
<tr>
<td i18n="address.total-received">Capacity</td>
<td><app-sats [satoshis]="channel.capacity"></app-sats></td>
<td><app-sats [satoshis]="channel.capacity"></app-sats>&nbsp; <app-fiat [value]="channel.capacity" digitsInfo="1.2-2"></app-fiat></td>
</tr>
</tbody>
</table>