Bugfix/fix date conversion in import of historical market data (#2994)

* Fix date conversion

* Update changelog
pull/2996/head
Thomas Kaul 4 months ago committed by GitHub
parent b758654158
commit cc0ce18627
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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'
})
);

Loading…
Cancel
Save