Browse Source
Bugfix/fix date conversion in import of historical market data (#2994)
* Fix date conversion
* Update changelog
pull/2996/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
5 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/app/admin/admin.controller.ts
|
|
@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
- Replaced `import-sort` with `prettier-plugin-sort-imports` |
|
|
|
- Upgraded `Nx` from version `17.2.8` to `18.0.4` |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the date conversion of the import of historical market data in the admin control panel |
|
|
|
|
|
|
|
## 2.50.0 - 2024-02-11 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -256,7 +256,7 @@ export class AdminController { |
|
|
|
dataSource, |
|
|
|
marketPrice, |
|
|
|
symbol, |
|
|
|
date: resetHours(parseISO(date)), |
|
|
|
date: parseISO(date), |
|
|
|
state: 'CLOSE' |
|
|
|
}) |
|
|
|
); |
|
|
|