Feature/improve labels in portfolio evolution chart and investment timeline (#2892)

* Improve labels

* Update changelog
pull/2897/head
Thomas Kaul 12 months ago committed by GitHub
parent 88c7e34cc3
commit e763bfb2e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Improved the labels in the portfolio evolution chart and investment timeline on the analysis page
- Upgraded `prisma` from version `5.7.1` to `5.8.1` - Upgraded `prisma` from version `5.7.1` to `5.8.1`
## 2.41.0 - 2024-01-16 ## 2.41.0 - 2024-01-16

@ -46,7 +46,7 @@ export class AnalysisPageComponent implements OnDestroy, OnInit {
public firstOrderDate: Date; public firstOrderDate: Date;
public hasImpersonationId: boolean; public hasImpersonationId: boolean;
public investments: InvestmentItem[]; public investments: InvestmentItem[];
public investmentTimelineDataLabel = $localize`Deposit`; public investmentTimelineDataLabel = $localize`Investment`;
public investmentsByGroup: InvestmentItem[]; public investmentsByGroup: InvestmentItem[];
public isLoadingBenchmarkComparator: boolean; public isLoadingBenchmarkComparator: boolean;
public isLoadingInvestmentChart: boolean; public isLoadingInvestmentChart: boolean;
@ -59,7 +59,7 @@ export class AnalysisPageComponent implements OnDestroy, OnInit {
public performanceDataItems: HistoricalDataItem[]; public performanceDataItems: HistoricalDataItem[];
public performanceDataItemsInPercentage: HistoricalDataItem[]; public performanceDataItemsInPercentage: HistoricalDataItem[];
public placeholder = ''; public placeholder = '';
public portfolioEvolutionDataLabel = $localize`Deposit`; public portfolioEvolutionDataLabel = $localize`Investment`;
public streaks: PortfolioInvestments['streaks']; public streaks: PortfolioInvestments['streaks'];
public top3: Position[]; public top3: Position[];
public unitCurrentStreak: string; public unitCurrentStreak: string;

Loading…
Cancel
Save