Skip to content

Commit 2294eb2

Browse files
committed
fix(slider): event emmiter oldValue
Closes #3449
1 parent 428cc1f commit 2294eb2

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Diff for: projects/igniteui-angular/src/lib/slider/slider.component.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ export class IgxSliderComponent implements ControlValueAccessor, EditorProvider,
855855
}
856856

857857
private toggleThumbLabel() {
858-
this.showThumbsLabels();
858+
this.showThumbsLabels(null);
859859
this.hideThumbsLabels();
860860
}
861861

@@ -1010,10 +1010,6 @@ export class IgxSliderComponent implements ControlValueAccessor, EditorProvider,
10101010
}
10111011

10121012
private getLabelValues(value) {
1013-
if (!value) {
1014-
return value;
1015-
}
1016-
10171013
if (this.isRange) {
10181014
return {
10191015
left: this.stepLabels[value.lower],

0 commit comments

Comments
 (0)