We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c174d6b commit 1c0b5ebCopy full SHA for 1c0b5eb
client/packages/lowcoder/src/comps/controls/sliderControl.tsx
@@ -20,7 +20,7 @@ class SliderControl extends SimpleComp<number> {
20
<ControlPropertyViewWrapper {...params}>
21
<Slider
22
style={{ width: "90%", margin: "8px 5% 0 5%"}}
23
- min={8} // Define the minimum value for the slider
+ min={1} // Define the minimum value for the slider
24
max={48} // Define the maximum value for the slider
25
value={this.value || 24}
26
onChange={(value) => this.dispatchChangeValueAction(value)} // this.dispatchChangeValueAction(value)}
0 commit comments