Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/aef840c2ccc73090bff5dc66aaedf7890df60bca
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
1 deletions
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed `RangeError: Maximum call stack size exceeded` for values of type `Big` in the value redaction interceptor for the impersonation mode
- Reset the letter spacing in buttons
## 1.237.0 - 2023-02-19
@ -1,3 +1,4 @@
import Big from 'big.js' ;
import { cloneDeep , isArray , isObject } from 'lodash' ;
export function hasNotDefinedValuesInObject ( aObject : Object ) : boolean {
@ -59,7 +60,10 @@ export function redactAttributes({
return redactAttributes ( { options , object : currentObject } ) ;
}
) ;
} else if ( isObject ( redactedObject [ property ] ) ) {
} else if (
isObject ( redactedObject [ property ] ) &&
! ( redactedObject [ property ] instanceof Big )
) {
// Recursively call the function on the nested object
redactedObject [ property ] = redactAttributes ( {
options ,