Skip to content

Commit 5490a3c

Browse files
committed
style(slider): fix lint errors
Closes #3449
1 parent c5907ba commit 5490a3c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

projects/igniteui-angular/src/lib/slider/slider.component.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -176,23 +176,23 @@ export class IgxSliderComponent implements ControlValueAccessor, EditorProvider,
176176
@HostBinding(`attr.aria-valuemin`)
177177
public get valuemin() {
178178
return this.minValue;
179-
};
179+
}
180180

181181
/**
182182
* @hidden
183183
*/
184184
@HostBinding(`attr.aria-valuemax`)
185185
public get valuemax() {
186186
return this.maxValue;
187-
};
187+
}
188188

189189
/**
190190
* @hidden
191191
*/
192192
@HostBinding(`attr.aria-readonly`)
193-
public get readonly(){
193+
public get readonly() {
194194
return this.disabled;
195-
};
195+
}
196196

197197

198198
/**

0 commit comments

Comments
 (0)