Browse Source

Merge branch 'main' into bugfix/last-request-date-in-users-table-of-admin-control-panel

pull/7021/head
Thomas Kaul 3 months ago
committed by GitHub
parent
commit
b76009df8b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 11
      apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html

1
CHANGELOG.md

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed an issue in the import dividends dialog
- Fixed the last request date in the users table of the admin control panel
## 3.9.0 - 2026-06-12

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-select formControlName="assetProfileIdentifier">
<mat-select-trigger>{{
assetProfileForm.get('assetProfileIdentifier')?.value?.name
assetProfileForm.get('assetProfileIdentifier')?.value
?.assetProfile?.name
}}</mat-select-trigger>
@for (holding of holdings; track holding) {
<mat-option
class="line-height-1"
[value]="{
dataSource: holding.assetProfile.dataSource,
name: holding.assetProfile.name,
symbol: holding.assetProfile.symbol
assetProfile: {
dataSource: holding.assetProfile.dataSource,
name: holding.assetProfile.name,
symbol: holding.assetProfile.symbol
}
}"
>
<span

Loading…
Cancel
Save