Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/00c2ede85e9908eb3236d78dbe5e052c2af3fb38?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
15 additions and
2 deletions
@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Extended the content of the _General_ section by the product roadmap on the Frequently Asked Questions (FAQ) page
- Extended the content of the _General_ section by the product roadmap on the Frequently Asked Questions (FAQ) page
### Changed
- Improved the usability of the platform management in the admin control panel
- Improved the usability of the tag management in the admin control panel
### Fixed
### Fixed
- Fixed the date conversion of the import of historical market data in the admin control panel
- Fixed the date conversion of the import of historical market data in the admin control panel
@ -91,7 +91,11 @@
< span i18n > Edit< / span >
< span i18n > Edit< / span >
< / span >
< / span >
< / button >
< / button >
< button mat-menu-item ( click ) = " onDeletePlatform ( element . id ) " >
< button
mat-menu-item
[disabled]="element.accountCount > 0"
(click)="onDeletePlatform(element.id)"
>
< span class = "align-items-center d-flex" >
< span class = "align-items-center d-flex" >
< ion-icon class = "mr-2" name = "trash-outline" / >
< ion-icon class = "mr-2" name = "trash-outline" / >
< span i18n > Delete< / span >
< span i18n > Delete< / span >
@ -71,7 +71,11 @@
< span i18n > Edit< / span >
< span i18n > Edit< / span >
< / span >
< / span >
< / button >
< / button >
< button mat-menu-item ( click ) = " onDeleteTag ( element . id ) " >
< button
mat-menu-item
[disabled]="element.activityCount > 0"
(click)="onDeleteTag(element.id)"
>
< span class = "align-items-center d-flex" >
< span class = "align-items-center d-flex" >
< ion-icon class = "mr-2" name = "trash-outline" / >
< ion-icon class = "mr-2" name = "trash-outline" / >
< span i18n > Delete< / span >
< span i18n > Delete< / span >