Browse Source
Merge branch 'main' into feature/render-tags-in-dialogs
pull/864/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
13 additions and
2 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-gathering.service.ts
|
@ -9,8 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
|
|
|
|
|
- Added the tags to the position detail dialog |
|
|
|
|
|
- Added the tags to the create or edit transaction 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 |
|
|
## 1.141.1 - 24.04.2022 |
|
|
|
|
|
|
|
|
|
@ -377,7 +377,14 @@ export class DataGatheringService { |
|
|
data: { |
|
|
data: { |
|
|
dataSource, |
|
|
dataSource, |
|
|
symbol, |
|
|
symbol, |
|
|
date: currentDate, |
|
|
date: new Date( |
|
|
|
|
|
Date.UTC( |
|
|
|
|
|
getYear(currentDate), |
|
|
|
|
|
getMonth(currentDate), |
|
|
|
|
|
getDate(currentDate), |
|
|
|
|
|
0 |
|
|
|
|
|
) |
|
|
|
|
|
), |
|
|
marketPrice: lastMarketPrice |
|
|
marketPrice: lastMarketPrice |
|
|
} |
|
|
} |
|
|
}); |
|
|
}); |
|
|