openatc-components 0.1.119 → 0.1.120
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.
|
@@ -136,7 +136,7 @@ export default {
|
|
|
136
136
|
let overlapData = overlap.map(item => {
|
|
137
137
|
let findIndexs = []
|
|
138
138
|
item.includedphases.forEach(i => {
|
|
139
|
-
const findItems = stageList.filter(j => j.
|
|
139
|
+
const findItems = stageList.filter(j => j.phases.includes(i))
|
|
140
140
|
if (findItems.length) findIndexs.push(...findItems.map(m => m.key))
|
|
141
141
|
})
|
|
142
142
|
findIndexs = Array.from(new Set(findIndexs))
|