Bugfix/load data once on portfolio activities page (#3726)

* Fetch activities only once

* Update changelog
pull/3727/head
Thomas Kaul 7 months ago committed by GitHub
parent 8fab73f122
commit a6d9f5dd69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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/), 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). 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 ### Added
@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Fixed an issue in the view mode toggle of the holdings tab on the home page (experimental) - 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 ## 2.105.0 - 2024-08-21

@ -108,8 +108,6 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit {
this.changeDetectorRef.markForCheck(); this.changeDetectorRef.markForCheck();
} }
}); });
this.fetchActivities();
} }
public fetchActivities() { public fetchActivities() {

Loading…
Cancel
Save