Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/b8533050b0c68c41ed138d61ff362631e5650861
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
2 deletions
@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the usability of the date range support by specific years (`2023`, `2022` , `2021` , etc.) in the assistant (experimental)
- Introduced a factory for the portfolio calculations to support different algorithms in future
### Fixed
- Fixed the duplicated tags in the position detail dialog
## 2.69.0 - 2024-03-30
### Added
@ -719,8 +719,6 @@ export class PortfolioService {
{ dataSource : aDataSource , symbol : aSymbol }
] ) ;
tags = uniqBy ( tags , 'id' ) ;
const portfolioCalculator = this . calculatorFactory . createCalculator ( {
activities : orders.filter ( ( order ) = > {
tags = tags . concat ( order . tags ) ;
@ -731,6 +729,8 @@ export class PortfolioService {
currency : userCurrency
} ) ;
tags = uniqBy ( tags , 'id' ) ;
const portfolioStart = portfolioCalculator . getStartDate ( ) ;
const transactionPoints = portfolioCalculator . getTransactionPoints ( ) ;