Address page with QR code

This commit is contained in:
Simon Lindh
2019-11-13 14:51:44 +08:00
parent 309e851ead
commit 480016ef07
18 changed files with 8241 additions and 93 deletions

View File

@@ -3,7 +3,7 @@
<br>
<ng-template [ngIf]="!isLoadingTx" [ngIfElse]="loadingTx">
<ng-template [ngIf]="!isLoadingTx && !error">
<app-transactions-list [transactions]="[tx]" [showConfirmations]="true"></app-transactions-list>
@@ -49,11 +49,21 @@
</div>
</ng-template>
<ng-template #loadingTx>
<ng-template [ngIf="isLoadingTx && !error">
<div class="text-center">
<div class="spinner-border text-light"></div>
<br><br>
</div>
</ng-template>
<ng-template [ngIf]="error">
<div class="text-center">
Error loading transaction data.
<br>
<i>{{ error.message }}</i>
</div>
</ng-template>
</div>
<br>