openatc-components 0.2.21 → 0.2.23

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.
@@ -433,8 +433,8 @@ export default {
433
433
  getStage () {
434
434
  if (!this.stagesChange) return
435
435
  const globalParamModel = this.$store.getters.globalParamModel
436
- let pattern = globalParamModel.getParamsByType('patternList')
437
- let mapAdd = (this.allPatternList ? this.allPatternList : pattern).map(item => item.stagesList).map(item => {
436
+ let pattern = globalParamModel ? globalParamModel.getParamsByType('patternList') : this.allPatternList
437
+ let mapAdd = pattern.map(item => item.stagesList).map(item => {
438
438
  return item.map(val => {
439
439
  return val.stageSplit ? val.stageSplit : val.split
440
440
  })
@@ -284,6 +284,7 @@
284
284
  :overlap="overlap"
285
285
  :checked="true"
286
286
  :tentative="true"
287
+ :cycleChange="false"
287
288
  :cycle="overLapCycle"
288
289
  >
289
290
  </over-lap>