Skip to content

Commit 90c5601

Browse files
authored
Merge pull request #5844 from IgniteUI/slider-default-range-values
fix(slider): visualizing slider labels values correctly
2 parents d009ac6 + d03f455 commit 90c5601

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<igx-thumb-label
77
*ngIf="isRange"
88
[type]="0"
9-
[value]="value"
9+
[value]="lowerLabel"
1010
[templateRef]="thumbFromTemplateRef"
1111
[continuous]="continuous"
1212
[context]="context"></igx-thumb-label>
@@ -27,7 +27,7 @@
2727
[thumbLabelVisibilityDuration]="thumbLabelVisibilityDuration"></igx-thumb>
2828

2929
<igx-thumb-label
30-
[value]="value"
30+
[value]="upperLabel"
3131
[type]="1"
3232
[templateRef]="thumbToTemplateRef"
3333
[continuous]="continuous"

0 commit comments

Comments
 (0)