merge master into branch

This commit is contained in:
2022-05-04 09:31:22 +02:00
381 changed files with 2334 additions and 41211 deletions

View File

@@ -450,18 +450,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: {
@@ -540,7 +540,7 @@ export default {
this.$store.commit('removeReferrer', u);
},
goToGenerateWorkflow({link}) {
console.log('save before leave to generate workflow')
// console.log('save before leave to generate workflow')
const callback = (data) => {
window.location.assign(link);
};