prefill startdate with now

This commit is contained in:
Julie Lenaerts 2022-04-05 16:03:07 +02:00
parent 8882c99f5a
commit 66ab38c60f

View File

@ -20,7 +20,7 @@ const store = createStore({
.map(p => p.person), .map(p => p.person),
personsReachables: window.accompanyingCourse.participations.filter(p => p.endDate == null) personsReachables: window.accompanyingCourse.participations.filter(p => p.endDate == null)
.map(p => p.person), .map(p => p.person),
startDate: new Date(), startDate: dateToISO(new Date()),
endDate: null, endDate: null,
isLoadingSocialActions: false, isLoadingSocialActions: false,
isPostingWork: false, isPostingWork: false,