From 3ca71cf35b5a3036643830f64fe7e0f8af9ac0c8 Mon Sep 17 00:00:00 2001 From: Jake Archibald Date: Sat, 20 Oct 2018 15:33:42 +0100 Subject: [PATCH] Ahh so that's what was causing outlines --- src/components/range/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/range/index.tsx b/src/components/range/index.tsx index ad41406f..fabc75c9 100644 --- a/src/components/range/index.tsx +++ b/src/components/range/index.tsx @@ -25,7 +25,7 @@ export default class Range extends Component { } = props; const { - value, min, max, + value, min, max, step, } = props; return ( @@ -46,6 +46,7 @@ export default class Range extends Component { value={value} min={min} max={max} + step={step} onInput={this.onTextInput} />