Skip to content
Snippets Groups Projects
Commit 7a3f23a3 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

fix: prevent users from creating timeslots in the past

closes #125
parent 516019dd
No related branches found
No related tags found
No related merge requests found
Pipeline #2652 passed
......@@ -351,6 +351,9 @@ export default {
select: this.createEvent,
selectable: true,
selectMirror: true,
selectAllow({ start }) {
return start > new Date()
},
navLinkDayClick(selectedDate) {
selectDay(selectedDate)
document
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment