openatc-components 0.4.33 → 0.4.34

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.4.33",
3
+ "version": "0.4.34",
4
4
  "description": "A Vue.js project",
5
5
  "author": "openatc developer",
6
6
  "private": false,
@@ -1196,8 +1196,10 @@ export default {
1196
1196
  for (let i = 0; i < ringsequence[1].length; i += minLength) {
1197
1197
  resultArr.push(ringsequence[1].slice(i, i + minLength))
1198
1198
  }
1199
- for (let k = 0; k < ringsequence[2].length; k += minLength) {
1200
- resultArrThree.push(ringsequence[2].slice(k, k + minLength))
1199
+ if (ringsequence[2]) {
1200
+ for (let k = 0; k < ringsequence[2].length; k += minLength) {
1201
+ resultArrThree.push(ringsequence[2].slice(k, k + minLength))
1202
+ }
1201
1203
  }
1202
1204
  }
1203
1205
  this.patternInfo = []