Skip to content

Commit

Permalink
fix(slider): #3340 fix visual regression
Browse files Browse the repository at this point in the history
  • Loading branch information
majornista committed Jun 21, 2023
1 parent 3384906 commit 7f26e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/slider/src/Slider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export class Slider extends ObserveSlotText(SliderHandle, '') {
) => {
const valueArray = [...values.values()];
if (valueArray.length === 2)
return `${valueArray[0]} ${valueArray[1]}`;
return `${valueArray[0]} - ${valueArray[1]}`;
return valueArray.join(', ');
};

Expand Down

0 comments on commit 7f26e6d

Please sign in to comment.