Skip to content

Commit

Permalink
Minor code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmaj committed Aug 1, 2018
1 parent 48866f2 commit 59d1d62
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/TimeInput/NativeInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ export default class NativeInput extends PureComponent {
stopPropagation = event => event.stopPropagation();

render() {
const { nativeValueParser } = this;

const { nativeValueParser, step } = this;
const {
disabled, maxTime, minTime, name, onChange, required, value,
} = this.props;
Expand All @@ -56,7 +55,7 @@ export default class NativeInput extends PureComponent {
onChange={onChange}
onFocus={this.stopPropagation}
required={required}
step={this.step}
step={step}
style={{
visibility: 'hidden',
position: 'absolute',
Expand Down

0 comments on commit 59d1d62

Please sign in to comment.