diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cd83547c..ee5ccc3c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## 2.186.0 - 2025-07-30 ### Added @@ -13,7 +13,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Improved the _Top 3_ and _Bottom 3_ performers on the analysis page by removing items without performance - Improved the usability of the toggle component +- Simplified the users table of the admin control panel - Restructured the response of the portfolio report endpoint (_X-ray_) - Refreshed the cryptocurrencies list - Improved the language localization for Catalan (`ca`) @@ -27,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Fixed the links of the _Top 3_ and _Bottom 3_ performers on the analysis page - Excluded the holdings originated of `FEE`, `INTEREST` and `LIABILITY` activities from the closed holdings on the portfolio holdings page - Fixed an issue with serving _Storybook_ related to missing styles diff --git a/apps/client/src/app/components/admin-users/admin-users.component.ts b/apps/client/src/app/components/admin-users/admin-users.component.ts index 2c9d07d74..84b82d111 100644 --- a/apps/client/src/app/components/admin-users/admin-users.component.ts +++ b/apps/client/src/app/components/admin-users/admin-users.component.ts @@ -101,7 +101,6 @@ export class GfAdminUsersComponent implements OnDestroy, OnInit { if (this.hasPermissionForSubscription) { this.displayedColumns = [ - 'index', 'user', 'country', 'registration', @@ -114,7 +113,6 @@ export class GfAdminUsersComponent implements OnDestroy, OnInit { ]; } else { this.displayedColumns = [ - 'index', 'user', 'registration', 'accounts', diff --git a/apps/client/src/app/components/admin-users/admin-users.html b/apps/client/src/app/components/admin-users/admin-users.html index 0db8574b5..7a6a6ae87 100644 --- a/apps/client/src/app/components/admin-users/admin-users.html +++ b/apps/client/src/app/components/admin-users/admin-users.html @@ -3,23 +3,6 @@
- # - | -- {{ i + 1 }} - | - 3) {
- this.bottom3 = holdingsSorted.slice(-3).reverse();
- } else {
- this.bottom3 = [];
- }
+ this.top3 = holdingsSorted
+ .filter(
+ ({ netPerformancePercentWithCurrencyEffect }) =>
+ netPerformancePercentWithCurrencyEffect > 0
+ )
+ .slice(0, 3);
+
+ this.bottom3 = holdingsSorted
+ .filter(
+ ({ netPerformancePercentWithCurrencyEffect }) =>
+ netPerformancePercentWithCurrencyEffect < 0
+ )
+ .slice(-3)
+ .reverse();
this.changeDetectorRef.markForCheck();
});
diff --git a/apps/client/src/app/pages/portfolio/analysis/analysis-page.html b/apps/client/src/app/pages/portfolio/analysis/analysis-page.html
index 477d47b40..d33d5e570 100644
--- a/apps/client/src/app/pages/portfolio/analysis/analysis-page.html
+++ b/apps/client/src/app/pages/portfolio/analysis/analysis-page.html
@@ -93,7 +93,7 @@
-
-
-
+
-
-
+ |
---|