summaryrefslogtreecommitdiffstats
path: root/src/components/ui/Slider.tsx
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2023-05-24 06:57:50 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2023-05-24 16:40:43 +0530
commite245b4fa229bee1e2ab97fcb42de3831b8bdbe5b (patch)
treed684777b3fde5470c9f99304a9f022422ffb8045 /src/components/ui/Slider.tsx
parent6.3.0-nightly.9 [skip ci] (diff)
downloadferdium-app-e245b4fa229bee1e2ab97fcb42de3831b8bdbe5b.tar.gz
ferdium-app-e245b4fa229bee1e2ab97fcb42de3831b8bdbe5b.tar.zst
ferdium-app-e245b4fa229bee1e2ab97fcb42de3831b8bdbe5b.zip
Upgrade npm modules
Diffstat (limited to 'src/components/ui/Slider.tsx')
-rw-r--r--src/components/ui/Slider.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ui/Slider.tsx b/src/components/ui/Slider.tsx
index ed9fe9073..be0846513 100644
--- a/src/components/ui/Slider.tsx
+++ b/src/components/ui/Slider.tsx
@@ -51,7 +51,7 @@ class Slider extends Component<IProps> {
51 value={field.value} 51 value={field.value}
52 min="1" 52 min="1"
53 max="100" 53 max="100"
54 onChange={e => (!disabled ? this.onChange(e) : null)} 54 onChange={e => (disabled ? null : this.onChange(e))}
55 /> 55 />
56 </div> 56 </div>
57 57