Browse Source

Add ticker symbol to parent name

pull/4044/head
JoryHogeveen 9 months ago
parent
commit
7d78ca05ed
  1. 4
      apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts

4
apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts

@ -498,7 +498,9 @@ export class AllocationsPageComponent implements OnDestroy, OnInit {
for (const index in parentHoldings) {
if (name === parentHoldings[index].name) {
return {
name: holding.name ?? symbol,
name: holding.name
? holding.name + ' (' + symbol + ')'
: symbol,
allocationInPercentage:
parentHoldings[index].valueInBaseCurrency / value,
valueInBaseCurrency:

Loading…
Cancel
Save