Skip to content

Commit

Permalink
Make navigation options look selected (active)
Browse files Browse the repository at this point in the history
  • Loading branch information
Angi-Kinas committed Sep 11, 2023
1 parent 37311fc commit 4169baa
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,28 @@
<a
class="menu-item"
routerLink="/records/my-org"
routerLinkActive
routerLinkActive="btn-active"
#rlaMyOrg="routerLinkActive"
>
<mat-icon class="material-icons-outlined">home</mat-icon>
<span translate="">dashboard.records.myOrg</span>
</a>

<a
class="menu-item"
routerLink="/records/all"
routerLinkActive
routerLinkActive="btn-active"
#rlaAll="routerLinkActive"
>
<mat-icon class="material-icons-outlined">work_outline</mat-icon>
<span translate="">dashboard.records.all</span>
</a>

<div class="menu-title" translate="">dashboard.labels.mySpace</div>
<a
class="menu-item"
routerLink="/records/my-records"
routerLinkActive
routerLinkActive="btn-active"
#rlaMyRecords="routerLinkActive"
>
<mat-icon class="material-icons-outlined">post_add</mat-icon>
Expand All @@ -30,7 +32,7 @@
<a
class="menu-item"
routerLink="/records/my-draft"
routerLinkActive
routerLinkActive="btn-active"
#rlaMyDraft="routerLinkActive"
>
<mat-icon class="material-icons-outlined">edit_note</mat-icon>
Expand All @@ -39,7 +41,7 @@
<a
class="menu-item"
routerLink="/records/my-library"
routerLinkActive
routerLinkActive="btn-active"
#rlaMyLibrary="routerLinkActive"
>
<mat-icon class="material-icons-outlined">bookmark_border</mat-icon>
Expand Down

0 comments on commit 4169baa

Please sign in to comment.