Skip to content

Commit 8656f77

Browse files
committed
Test for CI
1 parent a912fe3 commit 8656f77

File tree

2 files changed

+3
-15
lines changed

2 files changed

+3
-15
lines changed

chartlets.js/packages/lib/src/plugins/mui/Slider.tsx

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,6 @@ interface SliderProps extends ComponentProps, SliderState {
88
defaultValue?: number;
99
}
1010

11-
export const Slider = ({
12-
id,
13-
style,
14-
defaultValue,
15-
// onChange,
16-
}: SliderProps) => {
17-
return (
18-
<MuiSlider
19-
id={id}
20-
style={style}
21-
defaultValue={defaultValue}
22-
// onChange={onChange}
23-
/>
24-
);
11+
export const Slider = ({ id, style, defaultValue }: SliderProps) => {
12+
return <MuiSlider id={id} style={style} defaultValue={defaultValue} />;
2513
};

chartlets.py/chartlets/components/slider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@dataclass(frozen=True)
88
class Slider(Component):
99
"""Sliders allow users to make selections from a range of values along a
10-
bar."""
10+
bar.<Test for CI>"""
1111

1212
aria_label: str | None = None
1313
"""The label of the slider."""

0 commit comments

Comments
 (0)