From a6d9f5dd69f7935904ceb402c3072a9613cbbbbd Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 3 Sep 2024 19:24:14 +0200 Subject: [PATCH] Bugfix/load data once on portfolio activities page (#3726) * Fetch activities only once * Update changelog --- CHANGELOG.md | 3 ++- .../pages/portfolio/activities/activities-page.component.ts | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25cae43aa..d5945c854 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). -## 2.106.0-beta.5 - 2024-08-31 +## Unreleased ### Added @@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Fixed an issue in the view mode toggle of the holdings tab on the home page (experimental) +- Fixed an issue on the portfolio activities page by loading the data only once ## 2.105.0 - 2024-08-21 diff --git a/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts b/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts index 7cd89d62f..a7638c561 100644 --- a/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts +++ b/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts @@ -108,8 +108,6 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit { this.changeDetectorRef.markForCheck(); } }); - - this.fetchActivities(); } public fetchActivities() {