mempool/frontend/src/app/components/docs/api-docs-nav.component.html

5 lines
359 B
HTML
Raw Normal View History

2022-02-07 13:25:36 -05:00
<div *ngFor="let item of restDocs">
<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>
2022-02-07 13:25:36 -05:00
</div>