We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2454d44 + 752d9fe commit 7b88306Copy full SHA for 7b88306
frontend/express/public/javascripts/countly/vue/components/date.js
@@ -487,8 +487,8 @@
487
}
488
else {
489
if (this.inBetweenInput.parsed && this.inBetweenInput.parsed.length) {
490
- this.inBetweenInput.parsed[0] = moment(this.inBetweenInput.parsed[0]).startOf("day");
491
- this.inBetweenInput.parsed[1] = moment(this.inBetweenInput.parsed[1]).endOf("day");
+ this.inBetweenInput.parsed[0] = moment(this.inBetweenInput.parsed[0]).startOf("day").toDate();
+ this.inBetweenInput.parsed[1] = moment(this.inBetweenInput.parsed[1]).endOf("day").toDate();
492
493
inputObj = this.inBetweenInput.parsed;
494
0 commit comments