Browse Source
Merge branch 'main' into feature/improve-alignment-in-portfolio-performance-component
pull/2867/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
5 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Improved the alignment in the portfolio performance chart |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the currency in the error log of the exchange rate data service |
|
|
|
|
|
|
|
## 2.38.0 - 2024-01-13 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -87,7 +87,7 @@ export class ExchangeRateDataService { |
|
|
|
exchangeRatesByCurrency[currency][dateString] = previousExchangeRate; |
|
|
|
|
|
|
|
Logger.error( |
|
|
|
`No exchange rate has been found for ${DEFAULT_CURRENCY}${targetCurrency} at ${dateString}`, |
|
|
|
`No exchange rate has been found for ${DEFAULT_CURRENCY}${currency} at ${dateString}`, |
|
|
|
'ExchangeRateDataService' |
|
|
|
); |
|
|
|
} else { |
|
|
|