Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: slider component does not handle zero properly #16327

2 changes: 1 addition & 1 deletion packages/react/src/components/Slider/Slider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ class Slider extends PureComponent<SliderProps> {

if (adjustedValue !== targetValue) {
this.setState({
correctedValue: targetValue,
correctedValue: targetValue.toString(),
correctedPosition: handlePosition,
});
} else {
Expand Down
Loading