Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/dcc7ef89fe1141a420b674bcf391c5a4935406b7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
12 additions and
4 deletions
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog ](https://keepachangelog.com/en/1.0.0/ ),
and this project adheres to [Semantic Versioning ](https://semver.org/spec/v2.0.0.html ).
## 1.114.1 - 10.02.2022
### Fixed
- Fixed the creation of (wealth) items
## 1.114.0 - 10.02.2022
### Added
@ -216,9 +216,11 @@ export class CreateOrUpdateTransactionDialog implements OnDestroy {
dataSource : this.activityForm.controls [ 'dataSource' ] . value ,
fee : this.activityForm.controls [ 'fee' ] . value ,
quantity : this.activityForm.controls [ 'quantity' ] . value ,
symbol : isUUID ( this . activityForm . controls [ 'searchSymbol' ] . value . symbol )
? this . activityForm . controls [ 'name' ] . value
: this . activityForm . controls [ 'searchSymbol' ] . value . symbol ,
symbol :
this . activityForm . controls [ 'searchSymbol' ] . value . symbol === undefined ||
isUUID ( this . activityForm . controls [ 'searchSymbol' ] . value . symbol )
? this . activityForm . controls [ 'name' ] . value
: this . activityForm . controls [ 'searchSymbol' ] . value . symbol ,
type : this . activityForm . controls [ 'type' ] . value ,
unitPrice : this.activityForm.controls [ 'unitPrice' ] . value
} ;
@ -1,6 +1,6 @@
{
"name" : "ghostfolio" ,
"version" : "1.114. 0 ",
"version" : "1.114. 1 ",
"homepage" : "https://ghostfol.io" ,
"license" : "AGPL-3.0" ,
"scripts" : {