Browse Source
Merge branch 'main' into feature/extend-financial-modeling-prep-service
pull/1989/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
6 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/toggle/toggle.component.html
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
- Added the historical data and search functionality for the `FINANCIAL_MODELING_PREP` data source type |
|
|
- Added the historical data and search functionality for the `FINANCIAL_MODELING_PREP` data source type |
|
|
|
|
|
|
|
|
|
|
|
### 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" |
|
|