Feature/reverse order of specific years in date range selector of assistant (#3221)

* Reverse order

* Update changelog
pull/3223/head
Thomas Kaul 9 months ago committed by GitHub
parent af47889d65
commit 084467ee9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -11,12 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Set up the language localization for Chinese (`zh`) - Set up the language localization for Chinese (`zh`)
### Changed
- Improved the usability of the date range support by specific years (`2023`, `2022`, `2021`, etc.) in the assistant (experimental)
## 2.69.0 - 2024-03-30 ## 2.69.0 - 2024-03-30
### Added ### Added
- Added the date range support in the activities table on the portfolio activities page (experimental) - Added the date range support in the activities table on the portfolio activities page (experimental)
- Extended the date range support by specific years (`2023`, `2022`, `2021`, etc.) in the assistant (experimental) - Extended the date range support by specific years (`2021`, `2022`, `2023`, etc.) in the assistant (experimental)
- Set up `Tini` to avoid zombie processes and perform signal forwarding in docker image - Set up `Tini` to avoid zombie processes and perform signal forwarding in docker image
### Changed ### Changed

@ -219,6 +219,7 @@ export class AssistantComponent implements OnChanges, OnDestroy, OnInit {
return { label: format(date, 'yyyy'), value: format(date, 'yyyy') }; return { label: format(date, 'yyyy'), value: format(date, 'yyyy') };
}) })
.slice(0, -1) .slice(0, -1)
.reverse()
); );
} }

Loading…
Cancel
Save