Browse Source
Bugfix/preserve asset profile when cloning activity (#7339)
* Preserve asset profile when cloning activity
* Update changelog
pull/7341/head
Thomas Kaul
22 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/activities/activities-page.component.ts
|
|
|
@ -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 |
|
|
|
|
|
|
|
@ -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, |
|
|
|
|