Browse Source
Bugfix/fix vertical alignment in gf toggle (#1991)
* Fix alignment
* Update changelog
pull/1992/head^2
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
8 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/toggle/toggle.component.html
|
|
@ -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/), |
|
|
|
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 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -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" |
|
|
|