Browse Source

Refactor deprecated portfolio position attributes to asset profile

Thomas Kaul 3 weeks ago
parent
commit
c0cbf0f10d
  1. 12
      apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html

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

@ -38,18 +38,18 @@
<mat-option <mat-option
class="line-height-1" class="line-height-1"
[value]="{ [value]="{
dataSource: holding.dataSource, dataSource: holding.assetProfile.dataSource,
name: holding.name, name: holding.assetProfile.name,
symbol: holding.symbol symbol: holding.assetProfile.symbol
}" }"
> >
<span <span
><b>{{ holding.name }}</b></span ><b>{{ holding.assetProfile.name }}</b></span
> >
<br /> <br />
<small class="text-muted" <small class="text-muted"
>{{ holding.symbol | gfSymbol }} · >{{ holding.assetProfile.symbol | gfSymbol }} ·
{{ holding.currency }}</small {{ holding.assetProfile.currency }}</small
> >
</mat-option> </mat-option>
} }

Loading…
Cancel
Save