Browse Source

Change to assetProfile

pull/7020/head
Thomas Kaul 3 months ago
parent
commit
017f1badda
  1. 11
      apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html

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