mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 07:03:49 +00:00
fix datepicker for social action edit form.
still a problem with the display of already set evaluation dates... need to be transformed to correct format to display
This commit is contained in:
@@ -439,18 +439,18 @@ export default {
|
||||
]),
|
||||
startDate: {
|
||||
get() {
|
||||
return dateToISO(this.$store.state.startDate);
|
||||
return this.$store.state.startDate;
|
||||
},
|
||||
set(v) {
|
||||
this.$store.commit('setStartDate', ISOToDate(v));
|
||||
this.$store.commit('setStartDate', v);
|
||||
}
|
||||
},
|
||||
endDate: {
|
||||
get() {
|
||||
return dateToISO(this.$store.state.endDate);
|
||||
return this.$store.state.endDate;
|
||||
},
|
||||
set(v) {
|
||||
this.$store.commit('setEndDate', ISOToDate(v));
|
||||
this.$store.commit('setEndDate', v);
|
||||
}
|
||||
},
|
||||
note: {
|
||||
|
Reference in New Issue
Block a user