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

1
CHANGELOG.md

@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Fixed a layout regression that caused a double scrollbar on pages without tabs - 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 ## 3.4.0 - 2026-05-21

2
apps/api/src/app/portfolio/portfolio.service.ts

@ -1612,7 +1612,7 @@ export class PortfolioService {
assetSubClass: AssetSubClass.CASH, assetSubClass: AssetSubClass.CASH,
countries: [], countries: [],
createdAt: account.createdAt, createdAt: account.createdAt,
dataSource: DataSource.MANUAL, dataSource: this.dataProviderService.getDataSourceForExchangeRates(),
holdings: [], holdings: [],
id: currency, id: currency,
isActive: true, isActive: true,

Loading…
Cancel
Save