lower datepicker timeout

This commit is contained in:
Danny van Kooten 2018-06-23 17:43:44 +02:00
parent 2446ccb5bb
commit 5d99de5813
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class DatePicker extends Component {
this.timeout = window.setTimeout(() => {
this.props.onChange(this.state);
this.timeout = null;
}, 5)
}, 2)
}
}