Skip to content

Commit

Permalink
Fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
nachotp committed Feb 11, 2019
1 parent 12e6b4b commit 3463533
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Datepicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,8 @@ export default {
setDate(timestamp) {
var date = new Date(timestamp);
if (this.useUtc) {
date = new Date(Date.UTC(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate())
);
date = new Date(Date.UTC(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate()))
}
this.selectedDate = date;
this.setPageDate(date);
Expand Down

0 comments on commit 3463533

Please sign in to comment.