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 authored and Westbrook Johnson committed Jun 27, 2023
1 parent bdbc313 commit 8da5b8d
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 8da5b8d

Please sign in to comment.