Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/36298b217e42e453f58c81a6c2c91006bb9c418f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
1 deletions
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Improved the activities import for `csv` files exported by _Interactive Brokers_
- Improved the rendering of the chart ticks (`0.5K` → `500` )
- Increased the historical market data gathering of currency pairs to 10+ years
- Improved the content of the Frequently Asked Questions (FAQ) page
- Improved the content of the pricing page
@ -131,5 +131,11 @@ export function getVerticalHoverLinePlugin(
}
export function transformTickToAbbreviation ( value : number ) {
return value < 1000000 ? ` ${ value / 1000 } K ` : ` ${ value / 1000000 } M ` ;
if ( value >= - 999 && value <= 999 ) {
return value . toString ( ) ;
} else if ( value >= - 999999 && value <= 999999 ) {
return ` ${ value / 1000 } K ` ;
} else {
return ` ${ value / 1000000 } M ` ;
}
}