Browse Source
Bugfix/missing cash positions caused by incorrect data source (#6933)
* Change incorrect data source
* Update changelog
pull/6937/head
Thomas Kaul
1 day ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/app/portfolio/portfolio.service.ts
|
|
|
@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed a layout regression that caused a double scrollbar on pages without tabs |
|
|
|
- Resolved an issue with missing cash positions caused by an incorrect data source |
|
|
|
|
|
|
|
## 3.4.0 - 2026-05-21 |
|
|
|
|
|
|
|
|
|
|
|
@ -1612,7 +1612,7 @@ export class PortfolioService { |
|
|
|
assetSubClass: AssetSubClass.CASH, |
|
|
|
countries: [], |
|
|
|
createdAt: account.createdAt, |
|
|
|
dataSource: DataSource.MANUAL, |
|
|
|
dataSource: this.dataProviderService.getDataSourceForExchangeRates(), |
|
|
|
holdings: [], |
|
|
|
id: currency, |
|
|
|
isActive: true, |
|
|
|
|