Browse Source

Harmonize sector names

pull/6994/head
Thomas Kaul 3 days ago
parent
commit
cb285b6e89
  1. 4
      apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.ts

4
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.ts

@ -441,10 +441,8 @@ export class GfHoldingDetailDialogComponent implements OnInit {
if (SymbolProfile?.sectors?.length > 0) { if (SymbolProfile?.sectors?.length > 0) {
for (const sector of SymbolProfile.sectors) { for (const sector of SymbolProfile.sectors) {
sector.name = translate(sector.name);
this.sectors[sector.name] = { this.sectors[sector.name] = {
name: sector.name, name: translate(sector.name),
value: sector.weight value: sector.weight
}; };
} }

Loading…
Cancel
Save