File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
projects/components/src/radio Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1- @import " color-palette" ;
2- @import " font" ;
1+ @import ' color-palette' ;
2+ @import ' font' ;
33
44.title {
55 @include body-2-medium ($gray-7 );
Original file line number Diff line number Diff line change @@ -15,7 +15,12 @@ import { RadioOption } from './radio-option';
1515 (change)="this.onRadioChange($event)"
1616 [disabled]="this.disabled"
1717 >
18- <mat-radio-button *ngFor="let option of options" class="radio-button" [ngClass]="{'disabled': this.disabled}" [value]="option.value">
18+ <mat-radio-button
19+ *ngFor="let option of options"
20+ class="radio-button"
21+ [ngClass]="{ disabled: this.disabled }"
22+ [value]="option.value"
23+ >
1924 <ht-label class="radio-button-label" [label]="option.label"></ht-label>
2025 </mat-radio-button>
2126 </mat-radio-group>
@@ -37,7 +42,7 @@ export class RadioGroupComponent implements OnInit {
3742 @Output ( )
3843 public readonly selectedChange : EventEmitter < string > = new EventEmitter ( ) ;
3944
40- public constructor ( private readonly loggerService : LoggerService ) { }
45+ public constructor ( private readonly loggerService : LoggerService ) { }
4146
4247 public ngOnInit ( ) : void {
4348 // tslint:disable-next-line:strict-type-predicates
You can’t perform that action at this time.
0 commit comments