Browse Source

Bugfix/preserve asset profile when cloning activity (#7339)

* Preserve asset profile when cloning activity

* Update changelog
pull/7341/head
Thomas Kaul 1 day ago
committed by GitHub
parent
commit
9e4269fa37
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      apps/client/src/app/pages/portfolio/activities/activities-page.component.ts

1
CHANGELOG.md

@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed an issue where the symbol was not selected when cloning an activity
- Resolved a startup error in data gathering caused by uninitialized data provider mappings
- Improved the error handling in the `HtmlTemplateMiddleware`
- Improved the error handling in the get quotes functionality of the _Financial Modeling Prep_ service

2
apps/client/src/app/pages/portfolio/activities/activities-page.component.ts

@ -409,7 +409,7 @@ export class GfActivitiesPageComponent implements OnInit {
activity: {
...aActivity,
accountId: aActivity?.accountId,
assetProfile: null,
assetProfile: aActivity?.assetProfile ?? null,
date: new Date(),
id: null,
fee: 0,

Loading…
Cancel
Save