From 6d1c10d1c2bbb8f3ce909120f3255b5caa628a6c Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 20 Nov 2025 20:13:00 +0100 Subject: [PATCH] Feature/extend portfolio summary by percentage values (#5964) * Extend summary by percentage values * Update changelog --- CHANGELOG.md | 1 + .../components/home-summary/home-summary.html | 1 + .../portfolio-summary.component.html | 54 ++++++++++++++++--- .../portfolio-summary.component.ts | 21 ++++++++ 4 files changed, 70 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b4f7f7c7..1b43275e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Extended the accounts table menu with a _View Details_ item +- Extended the portfolio summary tab on the home page by percentage values (experimental) - Added the _OSS Gallery_ logo to the logo carousel on the landing page ### Changed diff --git a/apps/client/src/app/components/home-summary/home-summary.html b/apps/client/src/app/components/home-summary/home-summary.html index a9e016c92..064923a04 100644 --- a/apps/client/src/app/components/home-summary/home-summary.html +++ b/apps/client/src/app/components/home-summary/home-summary.html @@ -7,6 +7,7 @@
-
Emergency Fund
+
+ Emergency Fund + @if ( + !hasImpersonationId && + summary?.totalValueInBaseCurrency > 0 && + user?.settings?.isExperimentalFeatures + ) { + + } +
-
Buying Power
-
+
+ Buying Power + @if ( + !hasImpersonationId && + summary?.totalValueInBaseCurrency > 0 && + user?.settings?.isExperimentalFeatures + ) { + + } +
+
-
Excluded from Analysis
-
+
+ Excluded from Analysis + @if ( + !hasImpersonationId && + summary?.totalValueInBaseCurrency > 0 && + user?.settings?.isExperimentalFeatures + ) { + + } +
+