Skip to content

Commit b6c9ff0

Browse files
committed
feat: fix date bug!
1 parent 633baef commit b6c9ff0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/ClassesCalendar.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ export default {
189189
return {
190190
//MAGIC!
191191
name: c.name,
192-
start: this.time(today + (1 + d), c.time, 0),
193-
end: this.time(today + (1 + d), c.time, 1),
192+
start: this.time(today + (d), c.time, 0),
193+
end: this.time(today + (d), c.time, 1),
194194
}
195195
})
196196
})

0 commit comments

Comments
 (0)