Skip to content

Commit

Permalink
Merge pull request #1598 from UUDigitalHumanitieslab/bugfix/navbar-links
Browse files Browse the repository at this point in the history
show navbar links for unauthenticated users
  • Loading branch information
JeltevanBoheemen authored Jun 12, 2024
2 parents 634b1b6 + 70c507a commit 61f5378
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/app/menu/menu.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
<div class="navbar-menu" id="navigation-menu" [class.is-active]="menuOpen$ | async">
<div class="navbar-start">
<!-- navbar items -->
<a class="navbar-item" *ngIf="user$ | async"
<a class="navbar-item"
[routerLinkActive]="'is-active'" [routerLink]="['/home']">
<span class="icon" aria-hidden="true">
<fa-icon [icon]="navIcons.corpora"></fa-icon>
</span>
Corpora
</a>
<a class="navbar-item" *ngIf="user$ | async"
<a class="navbar-item"
[routerLinkActive]="'is-active'" [routerLink]="['/manual', 'main']">
<span class="icon" aria-hidden="true">
<fa-icon [icon]="navIcons.manual"></fa-icon>
Expand Down

0 comments on commit 61f5378

Please sign in to comment.