mempool/frontend/src/app/components/address-labels/address-labels.component.html

13 lines
323 B
HTML
Raw Normal View History

2022-05-07 11:32:15 +04:00
<a *ngIf="channel; else default" [routerLink]="['/lightning/channel' | relativeUrl, channel.id]">
<span
*ngIf="label"
class="badge badge-pill badge-warning"
>{{ label }}</span>
</a>
<ng-template #default>
<span
*ngIf="label"
class="badge badge-pill badge-warning"
>{{ label }}</span>
</ng-template>