Browse Source
Merge branch 'main' into bugfix/base-currency-for-total-value-calculation-in-public-controller
pull/7157/head
Thomas Kaul
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
6 additions and
0 deletions
-
CHANGELOG.md
-
apps/api/src/app/endpoints/public/public.controller.ts
|
|
@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
- Fixed the base currency for the total value calculation in the public access for portfolio sharing |
|
|
- Fixed the base currency for the total value calculation in the public access for portfolio sharing |
|
|
|
|
|
- Fixed an issue in the public access for portfolio sharing that exposed absolute values of the top holdings of ETFs |
|
|
- Fixed the time zone handling in the `api` test suite for deterministic execution in `UTC` |
|
|
- Fixed the time zone handling in the `api` test suite for deterministic execution in `UTC` |
|
|
|
|
|
|
|
|
## 3.17.0 - 2026-06-26 |
|
|
## 3.17.0 - 2026-06-26 |
|
|
|
|
|
@ -196,6 +196,11 @@ export class PublicController { |
|
|
portfolioPosition.assetProfile.assetSubClass === AssetSubClass.CASH |
|
|
portfolioPosition.assetProfile.assetSubClass === AssetSubClass.CASH |
|
|
? portfolioPosition.assetProfile.assetSubClassLabel |
|
|
? portfolioPosition.assetProfile.assetSubClassLabel |
|
|
: undefined, |
|
|
: undefined, |
|
|
|
|
|
holdings: portfolioPosition.assetProfile.holdings?.map( |
|
|
|
|
|
({ allocationInPercentage, name }) => { |
|
|
|
|
|
return { allocationInPercentage, name }; |
|
|
|
|
|
} |
|
|
|
|
|
), |
|
|
...(hasDetails |
|
|
...(hasDetails |
|
|
? {} |
|
|
? {} |
|
|
: { |
|
|
: { |
|
|
|