Browse Source
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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
3 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/activities/activities-page.component.ts
|
|
@ -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 |
|
|
|
|
|
|
|
|
|
@ -108,8 +108,6 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit { |
|
|
|
this.changeDetectorRef.markForCheck(); |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
this.fetchActivities(); |
|
|
|
} |
|
|
|
|
|
|
|
public fetchActivities() { |
|
|
|