You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.html

17 lines
788 B
HTML

<div fxLayout="column" fxFlex="100" fxLayoutAlign="start stretch" class="bordered-box">
<mat-tab-group>
<mat-tab>
<ng-template mat-tab-label>
<span matBadge="{{numUtxos}}" matBadgeOverlap="false" class="tab-badge">UTXOs</span>
</ng-template>
<rtl-on-chain-utxos [utxos]="utxos" [errorLoading]="flgLoading[0]" fxLayout="row" fxFlex="100"></rtl-on-chain-utxos>
</mat-tab>
<mat-tab>
<ng-template mat-tab-label>
<span matBadge="{{numTransactions}}" matBadgeOverlap="false" class="tab-badge">Transactions</span>
</ng-template>
<rtl-on-chain-transaction-history [transactions]="transactions" [errorLoading]="flgLoading[1]" fxLayout="row" fxFlex="100"></rtl-on-chain-transaction-history>
</mat-tab>
</mat-tab-group>
</div>