mempool/frontend/src/app/components/address-labels/address-labels.component.html
2024-06-10 23:04:37 +00:00

20 lines
495 B
HTML

<ng-template [ngIf]="channel" [ngIfElse]="default">
<div>
<div class="badge-positioner">
<a [routerLink]="['/lightning/channel' | relativeUrl, channel.id]">
<span
*ngIf="label"
class="badge badge-pill badge-warning {{ class }}"
>{{ label }}</span>
</a>
</div>
&nbsp;
</div>
</ng-template>
<ng-template #default>
<span
*ngIf="label"
class="badge badge-pill badge-warning {{ class }}"
>{{ label }}</span>
</ng-template>