Browse Source
Task/remove unused exchange from portfolio position interface (#7537)
Remove exchange
pull/7535/head^2
Thomas Kaul
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
1 additions and
3 deletions
-
apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts
-
libs/common/src/lib/interfaces/portfolio-position.interface.ts
|
|
@ -95,7 +95,7 @@ export class GfAllocationsPageComponent implements OnInit { |
|
|
| 'assetSubClassLabel' |
|
|
| 'assetSubClassLabel' |
|
|
| 'currency' |
|
|
| 'currency' |
|
|
| 'name' |
|
|
| 'name' |
|
|
> & { etfProvider: string; exchange?: string; value: number }; |
|
|
> & { etfProvider: string; value: number }; |
|
|
}; |
|
|
}; |
|
|
protected isLoading = false; |
|
|
protected isLoading = false; |
|
|
protected markets: PortfolioDetails['markets']; |
|
|
protected markets: PortfolioDetails['markets']; |
|
|
@ -381,7 +381,6 @@ export class GfAllocationsPageComponent implements OnInit { |
|
|
assetSubClass: position.assetProfile.assetSubClass, |
|
|
assetSubClass: position.assetProfile.assetSubClass, |
|
|
name: position.assetProfile.name |
|
|
name: position.assetProfile.name |
|
|
}), |
|
|
}), |
|
|
exchange: position.exchange, |
|
|
|
|
|
name: position.assetProfile.name, |
|
|
name: position.assetProfile.name, |
|
|
value: this.showValuesInPercentage() |
|
|
value: this.showValuesInPercentage() |
|
|
? position.allocationInPercentage |
|
|
? position.allocationInPercentage |
|
|
|
|
|
@ -26,7 +26,6 @@ export interface PortfolioPosition { |
|
|
}; |
|
|
}; |
|
|
dateOfFirstActivity: Date; |
|
|
dateOfFirstActivity: Date; |
|
|
dividend: number; |
|
|
dividend: number; |
|
|
exchange?: string; |
|
|
|
|
|
grossPerformance: number; |
|
|
grossPerformance: number; |
|
|
grossPerformancePercent: number; |
|
|
grossPerformancePercent: number; |
|
|
grossPerformancePercentWithCurrencyEffect: number; |
|
|
grossPerformancePercentWithCurrencyEffect: number; |
|
|
|