Browse Source
Feature/remove date range support in activities table on portfolio activities page (#3301)
* Remove date range support
* Update changelog
pull/3304/head
Thomas Kaul
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
6 additions and
3 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/activities/activities-page.component.ts
|
|
@ -5,6 +5,12 @@ 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 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Removed the date range support in the activities table on the portfolio activities page (experimental) |
|
|
|
|
|
|
|
## 2.73.0 - 2024-04-17 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -124,9 +124,6 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit { |
|
|
|
this.dataService |
|
|
|
.fetchActivities({ |
|
|
|
filters: this.userService.getFilters(), |
|
|
|
range: this.user?.settings?.isExperimentalFeatures |
|
|
|
? this.user?.settings?.dateRange |
|
|
|
: undefined, |
|
|
|
skip: this.pageIndex * this.pageSize, |
|
|
|
sortColumn: this.sortColumn, |
|
|
|
sortDirection: this.sortDirection, |
|
|
|