Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/73c127f10cb12a690b27261be1aa86936ffca758?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
1 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/ ),
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 ).
and this project adheres to [Semantic Versioning ](https://semver.org/spec/v2.0.0.html ).
## Unreleased
### Fixed
- Fixed the vertical alignment in the toggle component
## 1.270.1 - 2023-05-19
## 1.270.1 - 2023-05-19
### Added
### Added
@ -1,10 +1,11 @@
< mat-radio-group
< mat-radio-group
class="text-nowrap"
class="d-block text-nowrap"
[formControl]="option"
[formControl]="option"
(change)="onValueChange()"
(change)="onValueChange()"
>
>
< mat-radio-button
< mat-radio-button
*ngFor="let option of options"
*ngFor="let option of options"
class="d-inline-flex"
[disabled]="isLoading"
[disabled]="isLoading"
[ngClass]="{ 'cursor-pointer': !isLoading }"
[ngClass]="{ 'cursor-pointer': !isLoading }"
[value]="option.value"
[value]="option.value"