Browse Source

Bugfix/opening asset profile from watchlist (#7846)

* Fix issue when opening asset profile

* Update changelog
pull/7847/head
Thomas Kaul 19 hours ago
committed by GitHub
parent
commit
0c2ebee8ac
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 2
      libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.component.ts
  3. 2
      libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.html

4
CHANGELOG.md

@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Upgraded `bull-board` from version `9.0.1` to `9.5.0` - Upgraded `bull-board` from version `9.0.1` to `9.5.0`
- Upgraded `zod` from version `4.4.3` to `4.5.4` - Upgraded `zod` from version `4.4.3` to `4.5.4`
### Fixed
- Resolved an issue when opening an asset profile from the watchlist
## 3.68.0 - 2026-09-06 ## 3.68.0 - 2026-09-06
### Added ### Added

2
libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.component.ts

@ -44,7 +44,7 @@ import { BenchmarkDetailDialogParams } from './interfaces/interfaces';
templateUrl: 'benchmark-detail-dialog.html' templateUrl: 'benchmark-detail-dialog.html'
}) })
export class GfBenchmarkDetailDialogComponent implements OnInit { export class GfBenchmarkDetailDialogComponent implements OnInit {
public assetProfile: AdminMarketDataDetails['assetProfile']; public assetProfile?: AdminMarketDataDetails['assetProfile'];
public historicalDataItems: LineChartItem[]; public historicalDataItems: LineChartItem[];
public isLoading = true; public isLoading = true;
public value: number; public value: number;

2
libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.html

@ -1,7 +1,7 @@
<gf-dialog-header <gf-dialog-header
position="center" position="center"
[deviceType]="data.deviceType" [deviceType]="data.deviceType"
[title]="assetProfile.name ?? assetProfile.symbol ?? ''" [title]="assetProfile?.name ?? assetProfile?.symbol ?? ''"
(closeButtonClicked)="onClose()" (closeButtonClicked)="onClose()"
/> />

Loading…
Cancel
Save