From e1dd466f5ffe174e11425a5783b69da30beb5712 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 22 Aug 2024 19:35:58 +0200 Subject: [PATCH] Fix home overview chart --- .../src/app/components/home-overview/home-overview.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/app/components/home-overview/home-overview.component.ts b/apps/client/src/app/components/home-overview/home-overview.component.ts index 9addc24b7..274554556 100644 --- a/apps/client/src/app/components/home-overview/home-overview.component.ts +++ b/apps/client/src/app/components/home-overview/home-overview.component.ts @@ -131,7 +131,7 @@ export class HomeOverviewComponent implements OnDestroy, OnInit { ({ date, netPerformanceInPercentageWithCurrencyEffect }) => { return { date, - value: netPerformanceInPercentageWithCurrencyEffect + value: netPerformanceInPercentageWithCurrencyEffect * 100 }; } );