Feature/remove date range support in activities table on portfolio activities page (#3301)

* Remove date range support

* Update changelog
pull/3304/head
Thomas Kaul 4 weeks ago committed by GitHub
parent ab86dd5318
commit b6ad362850
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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,

Loading…
Cancel
Save