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
parent
commit
cc0ce18627
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 2
      apps/api/src/app/admin/admin.controller.ts

4
CHANGELOG.md

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

2
apps/api/src/app/admin/admin.controller.ts

@ -256,7 +256,7 @@ export class AdminController {
dataSource,
marketPrice,
symbol,
date: resetHours(parseISO(date)),
date: parseISO(date),
state: 'CLOSE'
})
);

Loading…
Cancel
Save