Browse Source

Merge branch 'main' into feature/improve-local-number-formatting-in-value-component

pull/1992/head
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
48dd370751
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
- Improved the local number formatting in the value component
### 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