Merge pull request #4253 from SergioCrisostomo/datepicker-4127

Parse dates to be sure we consume correct format
This commit is contained in:
Aresn 2018-08-10 17:02:19 +08:00 committed by GitHub
commit 5c35f44651
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -646,6 +646,7 @@
}
},
onPick(dates, visible = false, type) {
dates = this.parseDate(dates);
if (this.multiple){
const pickedTimeStamp = dates.getTime();
const indexOfPickedDate = this.internalValue.findIndex(date => date && date.getTime() === pickedTimeStamp);