Browse Source

Merge branch 'main' into feature/render-tags-in-dialogs

pull/864/head
Thomas Kaul 3 years ago
committed by GitHub
parent
commit
7c02c9e5e8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      CHANGELOG.md
  2. 9
      apps/api/src/services/data-gathering.service.ts

6
CHANGELOG.md

@ -9,8 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added the tags to the position detail dialog
- Added the tags to the create or edit transaction dialog
- Added the tags to the position detail dialog
### Changed
- Changed the date to UTC in the data gathering service
## 1.141.1 - 24.04.2022

9
apps/api/src/services/data-gathering.service.ts

@ -377,7 +377,14 @@ export class DataGatheringService {
data: {
dataSource,
symbol,
date: currentDate,
date: new Date(
Date.UTC(
getYear(currentDate),
getMonth(currentDate),
getDate(currentDate),
0
)
),
marketPrice: lastMarketPrice
}
});

Loading…
Cancel
Save