Skip to content

Commit

Permalink
chore: linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Jun 12, 2024
1 parent 1eead79 commit 548338b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/DateTimePicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ export default {
date = this.getDate(
date.getFullYear(),
date.getMonth(),
date.getDate() + incrementer
date.getDate() + incrementer,
)
dates.push(date)
count--
Expand Down Expand Up @@ -329,11 +329,11 @@ export default {
date.setHours(this.hour, this.minute, this.second, 0)
// "YYYY-MM-DD HH:MM:SS"
return `${date.getFullYear()}-${this.twoDigit(
date.getMonth() + 1
date.getMonth() + 1,
)}-${this.twoDigit(date.getDate())} ${this.twoDigit(
date.getHours()
date.getHours(),
)}:${this.twoDigit(date.getMinutes())}:${this.twoDigit(
date.getSeconds()
date.getSeconds(),
)}`
},
getDate(...args) {
Expand Down

0 comments on commit 548338b

Please sign in to comment.