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
parent
commit
b3bdfab419
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      CHANGELOG.md
  2. 11
      apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html

6
CHANGELOG.md

@ -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

11
apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html

@ -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

Loading…
Cancel
Save