Browse Source
Feature/reverse order of specific years in date range selector of assistant (#3221)
* Reverse order
* Update changelog
pull/3223/head
Thomas Kaul
12 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
1 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/assistant/assistant.component.ts
|
|
@ -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`) |
|
|
|
|
|
|
|
### 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 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
- 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 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
@ -219,6 +219,7 @@ export class AssistantComponent implements OnChanges, OnDestroy, OnInit { |
|
|
|
return { label: format(date, 'yyyy'), value: format(date, 'yyyy') }; |
|
|
|
}) |
|
|
|
.slice(0, -1) |
|
|
|
.reverse() |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|