Browse Source

feat(client): enforce immutability

pull/6927/head
KenTandrian 2 days ago
parent
commit
249a919d00
  1. 8
      apps/client/src/app/components/home-overview/home-overview.component.ts

8
apps/client/src/app/components/home-overview/home-overview.component.ts

@ -49,11 +49,11 @@ export class GfHomeOverviewComponent implements OnInit {
protected historicalDataItems: LineChartItem[] | null; protected historicalDataItems: LineChartItem[] | null;
protected isLoadingPerformance = true; protected isLoadingPerformance = true;
protected performance: PortfolioPerformance; protected performance: PortfolioPerformance;
protected performanceLabel = $localize`Performance`; protected readonly performanceLabel = $localize`Performance`;
protected precision = 2; protected precision = 2;
protected routerLinkAccounts = internalRoutes.accounts.routerLink; protected readonly routerLinkAccounts = internalRoutes.accounts.routerLink;
protected routerLinkPortfolio = internalRoutes.portfolio.routerLink; protected readonly routerLinkPortfolio = internalRoutes.portfolio.routerLink;
protected routerLinkPortfolioActivities = protected readonly routerLinkPortfolioActivities =
internalRoutes.portfolio.subRoutes.activities.routerLink; internalRoutes.portfolio.subRoutes.activities.routerLink;
protected showDetails = false; protected showDetails = false;
protected unit: string; protected unit: string;

Loading…
Cancel
Save