Moving Docs and Faq to separate lazy loaded module

This commit is contained in:
softsimon
2022-04-24 22:53:27 +04:00
parent bf314be7eb
commit 9b4c6b9e2c
19 changed files with 118 additions and 101 deletions

View File

@@ -0,0 +1,4 @@
<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>