Browse Source

Merge branch 'main' into feature/extend-financial-modeling-prep-service

pull/1989/head
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
d7452c7cf8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 3
      apps/client/src/app/components/toggle/toggle.component.html

4
CHANGELOG.md

@ -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
### Fixed
- Fixed the vertical alignment in the toggle component
## 1.270.1 - 2023-05-19
### Added

3
apps/client/src/app/components/toggle/toggle.component.html

@ -1,10 +1,11 @@
<mat-radio-group
class="text-nowrap"
class="d-block text-nowrap"
[formControl]="option"
(change)="onValueChange()"
>
<mat-radio-button
*ngFor="let option of options"
class="d-inline-flex"
[disabled]="isLoading"
[ngClass]="{ 'cursor-pointer': !isLoading }"
[value]="option.value"

Loading…
Cancel
Save