Skip to content

Commit

Permalink
Fixed linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
pimmerks authored Jun 2, 2020
1 parent 1885575 commit b9a2639
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<a [routerLink]="['/home']" routerLinkActive="active" class="nav-link"><span class="nav-text">Home</span></a>
</div>

<div class="header-actions" *ngIf="!(isAuthenticated$ | async)">
<div class="header-actions" *ngIf="(isAuthenticated$ | async) === false">
<a [routerLink]="['/auth/login']" routerLinkActive="active" class="nav-link" aria-label="login">
Login
</a>
Expand All @@ -28,4 +28,4 @@
<nav class="sidenav" *ngIf="isAuthenticated$ | async">
</nav>
</div>
</clr-main-container>
</clr-main-container>

0 comments on commit b9a2639

Please sign in to comment.