openatc-components 0.1.54 → 0.1.55

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openatc-components",
3
- "version": "0.1.54",
3
+ "version": "0.1.55",
4
4
  "description": "A Vue.js project",
5
5
  "author": "openatc developer",
6
6
  "private": false,
@@ -268,16 +268,18 @@ export default {
268
268
  },
269
269
  created () {
270
270
  this.globalParamModel = this.$store.getters.globalParamModel
271
- let idPattern = this.localPatternList.filter(item => item.id === this.controlData.patternid)
272
- if (this.patternStatusList && this.newCycle && !this.controlData) {
273
- setTimeout(() => {
274
- this.handleCurrentChange(this.patternStatusList)
275
- this.handleBarrierHeight()
276
- }, 400)
277
- } else if (idPattern.length === 0 || (this.controlData && this.showCondition) || (this.controlData && this.localPatternList.length === 0)) {
278
- this.handleTentivePatternData()
279
- } else {
280
- this.handlePatternData()
271
+ if (this.localPatternList) {
272
+ let idPattern = this.localPatternList.filter(item => item.id === this.controlData.patternid)
273
+ if (this.patternStatusList && this.newCycle && !this.controlData) {
274
+ setTimeout(() => {
275
+ this.handleCurrentChange(this.patternStatusList)
276
+ this.handleBarrierHeight()
277
+ }, 400)
278
+ } else if (idPattern.length === 0 || (this.controlData && this.showCondition) || (this.controlData && this.localPatternList.length === 0)) {
279
+ this.handleTentivePatternData()
280
+ } else {
281
+ this.handlePatternData()
282
+ }
281
283
  }
282
284
  this.PhaseDataModel = new PhaseDataModel()
283
285
  this.CrossDiagramMgr = new CrossDiagramMgr()