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) ); }