Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/b021fbde59b720b223789d64eba6a3bf8006ee85
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
3 deletions
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Respected the data source attribute of the transactions model in the data management for historical data
- Prettified the generic scraper symbols in the transaction filtering component
- Changed to the strict mode of distance formatting between two given dates
### Fixed
@ -5,7 +5,7 @@ import { DataService } from '@ghostfolio/client/services/data.service';
import { UserService } from '@ghostfolio/client/services/user/user.service' ;
import { DEFAULT_DATE_FORMAT } from '@ghostfolio/common/config' ;
import { AdminData , User } from '@ghostfolio/common/interfaces' ;
import { formatDistanceToNow , isValid , parseISO , sub } from 'date-fns' ;
import { formatDistanceToNow Strict , isValid , parseISO , sub } from 'date-fns' ;
import { Subject } from 'rxjs' ;
import { takeUntil } from 'rxjs/operators' ;
@ -76,7 +76,7 @@ export class AdminPageComponent implements OnInit {
public formatDistanceToNow ( aDateString : string ) {
if ( aDateString ) {
const distanceString = formatDistanceToNow (
const distanceString = formatDistanceToNow Strict (
sub ( parseISO ( aDateString ) , { seconds : 10 } ) ,
{
addSuffix : true
@ -124,7 +124,7 @@ export class AdminPageComponent implements OnInit {
this . users = users ;
if ( isValid ( parseISO ( lastDataGathering ? . toString ( ) ) ) ) {
this . lastDataGathering = formatDistanceToNow (
this . lastDataGathering = formatDistanceToNow Strict (
new Date ( lastDataGathering ) ,
{
addSuffix : true