Minor UX fixes.

This commit is contained in:
softsimon 2020-02-28 05:28:23 +07:00
parent ef862e2442
commit 50b4e1523e
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7
2 changed files with 3 additions and 1 deletions

View File

@ -86,6 +86,8 @@ export class BlockComponent implements OnInit {
}
getBlockTransactions(hash: string) {
this.isLoadingTransactions = true;
this.transactions = null;
this.electrsApiService.getBlockTransactions$(hash)
.subscribe((transactions: any) => {
this.transactions = transactions;

View File

@ -61,7 +61,7 @@
<ng-template #firstSeenTmpl>
<tr>
<td>First seen</td>
<td><app-time-since [time]="transactionTime"></app-time-since> ago</td>
<td><i><app-time-since [time]="transactionTime"></app-time-since> ago</i></td>
</tr>
</ng-template>
</ng-template>