Browse Source
Bugfix/missing navigation on landing page for unauthenticated users (#7192)
Fix missing navigation on landing page for unauthenticated users
pull/7203/head
Akash Negi
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
apps/client/src/app/components/header/header.component.html
|
|
|
@ -332,7 +332,7 @@ |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|
} |
|
|
|
@if (user() === null) { |
|
|
|
@if (!user()) { |
|
|
|
<div class="d-flex h-100 logo-container" [class.filled]="hasTabs()"> |
|
|
|
<a |
|
|
|
class="align-items-center h-100 justify-content-start px-2 px-sm-3 rounded-0" |
|
|
|
|