Browse Source

Bugfix/missing 'Sign in' button on the landing page for unauthenticated users

pull/7192/head
AkashNegi1 2 weeks ago
parent
commit
9dca2e414c
  1. 1
      CHANGELOG.md
  2. 2
      apps/client/src/app/components/header/header.component.html

1
CHANGELOG.md

@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Fixed the missing "Sign in" button on the landing page for unauthenticated users
- Fixed the validation of the data source field of an asset profile with market data - Fixed the validation of the data source field of an asset profile with market data
- Fixed a recurring issue where single-value fields were incorrectly validated as arrays in various endpoints - Fixed a recurring issue where single-value fields were incorrectly validated as arrays in various endpoints

2
apps/client/src/app/components/header/header.component.html

@ -332,7 +332,7 @@
</li> </li>
</ul> </ul>
} }
@if (user() === null) { @if (!user()) {
<div class="d-flex h-100 logo-container" [class.filled]="hasTabs()"> <div class="d-flex h-100 logo-container" [class.filled]="hasTabs()">
<a <a
class="align-items-center h-100 justify-content-start px-2 px-sm-3 rounded-0" class="align-items-center h-100 justify-content-start px-2 px-sm-3 rounded-0"

Loading…
Cancel
Save