Skip to content

Commit 9ee81da

Browse files
author
Patricio Albizu
committed
feat: fixing lint
1 parent 56668b6 commit 9ee81da

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

projects/components/src/radio/radio-group.component.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
@import "color-palette";
2-
@import "font";
1+
@import 'color-palette';
2+
@import 'font';
33

44
.title {
55
@include body-2-medium($gray-7);

projects/components/src/radio/radio-group.component.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)