Browse Source
Bugfix/opening asset profile from watchlist (#7846)
* Fix issue when opening asset profile
* Update changelog
pull/7847/head
Thomas Kaul
24 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
6 additions and
2 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.component.ts
-
libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.html
|
|
@ -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 |
|
|
|
|
|
@ -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; |
|
|
|
|
|
@ -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()" |
|
|
/> |
|
|
/> |
|
|
|
|
|
|
|
|
|