@processmaker/modeler 1.37.1 → 1.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/modeler.common.js +59 -60
- package/dist/modeler.common.js.map +1 -1
- package/dist/modeler.umd.js +59 -60
- package/dist/modeler.umd.js.map +1 -1
- package/dist/modeler.umd.min.js +4 -4
- package/dist/modeler.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/inspectors/TimerExpression.vue +1 -1
- package/src/components/inspectors/WeekdaySelect.vue +2 -2
- package/src/components/railBottom/RailBottom.vue +1 -1
- package/src/components/railBottom/railBottom.scss +7 -0
package/package.json
CHANGED
|
@@ -107,7 +107,8 @@ export default {
|
|
|
107
107
|
selected: false,
|
|
108
108
|
},
|
|
109
109
|
],
|
|
110
|
-
|
|
110
|
+
// eslint-disable-next-line vue/no-computed-properties-in-data
|
|
111
|
+
cycleManager: new CycleManager(this.startDate, this.repeat, this.periodicityValue, this.selectedWeekdays, this.endDate, this.ends, this.times),
|
|
111
112
|
};
|
|
112
113
|
},
|
|
113
114
|
watch: {
|
|
@@ -143,7 +144,6 @@ export default {
|
|
|
143
144
|
foundDay.selected = true;
|
|
144
145
|
}
|
|
145
146
|
});
|
|
146
|
-
this.cycleManager = new CycleManager(this.startDate, this.repeat, this.periodicityValue, this.selectedWeekdays, this.endDate, this.ends, this.times);
|
|
147
147
|
},
|
|
148
148
|
computed: {
|
|
149
149
|
repeatOnValidationError() {
|