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
parent
commit
896e96c9af
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      apps/client/src/app/components/header/header.component.html

2
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"

Loading…
Cancel
Save