feat: Create Tables / Files dropdown under load tab

This commit is contained in:
Sabir Hassan 2024-01-04 11:28:16 +05:00
parent 516e5a2062
commit b473b198a6
1 changed files with 23 additions and 1 deletions

View File

@ -107,7 +107,29 @@
</clr-tab-content>
</clr-tab>
</clr-tabs>
<p *ngIf="isMainRoute('home')" class="page-title">Edit</p>
<div
*ngIf="isMainRoute('home')"
class="d-flex justify-content-center sub-dropdown"
>
<clr-dropdown>
<button class="dropdown-toggle btn btn-link" clrDropdownTrigger>
{{ getSubPage() }}
<clr-icon shape="caret down"></clr-icon>
</button>
<clr-dropdown-menu *clrIfOpen>
<a
clrVerticalNavLink
routerLink="/home/tables"
routerLinkActive="active"
>Tables</a
>
<a clrVerticalNavLink routerLink="/home/files" routerLinkActive="active"
>Files</a
>
</clr-dropdown-menu>
</clr-dropdown>
</div>
<div class="nav-divider"></div>