Browse Source

Merge branch 'main' into task/improve-dynamic-numerical-precision-in-account-and-holding-detail-dialogs-on-mobile

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

4
CHANGELOG.md

@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the dynamic numerical precision for various values in the account detail dialog on mobile - Improved the dynamic numerical precision for various values in the account detail dialog on mobile
- Improved the dynamic numerical precision for various values in the holding detail dialog on mobile - Improved the dynamic numerical precision for various values in the holding detail dialog on mobile
### 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