From d88397f44df11fe0e31e760ec9e371e1ab26d7f4 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Fri, 1 Aug 2025 07:03:09 +0200 Subject: [PATCH] Feature/move changing asset profile identifier in asset profile dialog to general availability (#5296) * Move support for changing asset profile identifier to general availability * Update changelog --- CHANGELOG.md | 1 + .../asset-profile-dialog/asset-profile-dialog.component.ts | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 912925a8b..903f316d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Moved the support for changing the asset profile identifier (`dataSource` and `symbol`) in the asset profile details dialog of the admin control panel from experimental to general availability - Improved the balance of headings on the landing page - Improved the language localization for Spanish (`es`) - Upgraded `angular` from version `20.0.7` to `20.1.3` diff --git a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts index 19bf69bab..0ea28c618 100644 --- a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts +++ b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts @@ -233,8 +233,7 @@ export class GfAssetProfileDialogComponent implements OnDestroy, OnInit { public get canEditAssetProfileIdentifier() { return ( this.assetProfile?.assetClass && - !['MANUAL'].includes(this.assetProfile?.dataSource) && - this.user?.settings?.isExperimentalFeatures + !['MANUAL'].includes(this.assetProfile?.dataSource) ); }