Skip to content

Commit

Permalink
fix: Slider disabled state fix (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
magnuh authored Feb 15, 2024
1 parent 5a91a63 commit f005e79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/slider/src/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export function Slider({ min = 0, max = 100, ...rest }: SliderProps) {
/>
<div
className={classNames({
[ccSlider.activeTrack]: true,
[ccSlider.activeTrack]: !disabled,
[ccSlider.activeTrackDisabled]: disabled,
})}
style={sliderActiveStyle}
Expand Down

0 comments on commit f005e79

Please sign in to comment.