alumuko / vanilla-datetimerange-picker

A JavaScript component that is a date & time range picker, no need to build, no dependencies except Moment.js, that is based on Dan Grossman's bootstrap-daterangepicker.
MIT License
148 stars 17 forks source link

Bug due to code error. #2

Open perrycyl opened 2 years ago

perrycyl commented 2 years ago

Error on line 1596 of vanilla-datetimerange-picker.js:

  1596              start = moment(this.element.val(), this.locale.format);

should be:

  1596              start = moment(this.element.value, this.locale.format);
alumuko commented 2 years ago

Thanks your report. I fixed it.