mirror of
https://github.com/mempool/mempool.git
synced 2026-08-19 13:18:06 +02:00
4 lines
358 B
HTML
4 lines
358 B
HTML
<div *ngFor="let item of tabData">
|
|
<p *ngIf="( item.type === 'category' ) && ( item.showConditions.indexOf(network.val) > -1 )">{{ item.title }}</p>
|
|
<a *ngIf="( item.type !== 'category' ) && ( item.showConditions.indexOf(network.val) > -1 )" [routerLink]="['./']" fragment="{{ item.fragment }}" (click)="navLinkClick($event)">{{ item.title }}</a>
|
|
</div>
|