chrisdavies / tiny-date-picker

A small, modern, dependency-free date picker
https://chrisdavies.github.io/tiny-date-picker/
415 stars 87 forks source link

Setting date before opening doesn't work #104

Open antonioribeiro opened 5 years ago

antonioribeiro commented 5 years ago

Works:

this.datePicker.open()

this.datePicker.setState({
    selectedDate: new Date(),
    hilightedDate: new Date(),
})

Doesn't, I get a calendar full of NaNs:

this.datePicker.setState({
    selectedDate: new Date(),
    hilightedDate: new Date(),
})

this.datePicker.open()