Browse Source
Bugfix/issue in import dividends dialog (#7020)
* Change to assetProfile
* Update changelog
pull/7021/head^2
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
13 additions and
4 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html
|
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Fixed an issue in the import dividends dialog |
|
|
|
|
|
|
|
|
## 3.9.0 - 2026-06-12 |
|
|
## 3.9.0 - 2026-06-12 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
|
|
@ -32,15 +32,18 @@ |
|
|
<mat-label i18n>Holding</mat-label> |
|
|
<mat-label i18n>Holding</mat-label> |
|
|
<mat-select formControlName="assetProfileIdentifier"> |
|
|
<mat-select formControlName="assetProfileIdentifier"> |
|
|
<mat-select-trigger>{{ |
|
|
<mat-select-trigger>{{ |
|
|
assetProfileForm.get('assetProfileIdentifier')?.value?.name |
|
|
assetProfileForm.get('assetProfileIdentifier')?.value |
|
|
|
|
|
?.assetProfile?.name |
|
|
}}</mat-select-trigger> |
|
|
}}</mat-select-trigger> |
|
|
@for (holding of holdings; track holding) { |
|
|
@for (holding of holdings; track holding) { |
|
|
<mat-option |
|
|
<mat-option |
|
|
class="line-height-1" |
|
|
class="line-height-1" |
|
|
[value]="{ |
|
|
[value]="{ |
|
|
dataSource: holding.assetProfile.dataSource, |
|
|
assetProfile: { |
|
|
name: holding.assetProfile.name, |
|
|
dataSource: holding.assetProfile.dataSource, |
|
|
symbol: holding.assetProfile.symbol |
|
|
name: holding.assetProfile.name, |
|
|
|
|
|
symbol: holding.assetProfile.symbol |
|
|
|
|
|
} |
|
|
}" |
|
|
}" |
|
|
> |
|
|
> |
|
|
<span |
|
|
<span |
|
|
|