Browse Source

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
pull/5303/head
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
d88397f44d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 3
      apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts

1
CHANGELOG.md

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### 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 balance of headings on the landing page
- Improved the language localization for Spanish (`es`) - Improved the language localization for Spanish (`es`)
- Upgraded `angular` from version `20.0.7` to `20.1.3` - Upgraded `angular` from version `20.0.7` to `20.1.3`

3
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() { public get canEditAssetProfileIdentifier() {
return ( return (
this.assetProfile?.assetClass && this.assetProfile?.assetClass &&
!['MANUAL'].includes(this.assetProfile?.dataSource) && !['MANUAL'].includes(this.assetProfile?.dataSource)
this.user?.settings?.isExperimentalFeatures
); );
} }

Loading…
Cancel
Save