eoss-ui 0.6.82 → 0.6.83
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/lib/eoss-ui.common.js +13 -11
- package/lib/flow.js +7 -5
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/main.vue +3 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -2614,9 +2614,11 @@ export default {
|
|
|
2614
2614
|
} else {
|
|
2615
2615
|
this.nodeInfos = item.taskNodeList;
|
|
2616
2616
|
|
|
2617
|
-
|
|
2617
|
+
if(this.taskOperationShiftedNodeList){
|
|
2618
|
+
this.nodeInfos = item.taskNodeList.filter(
|
|
2618
2619
|
(x) =>this.taskOperationShiftedNodeList.indexOf(x.nodeId) == -1
|
|
2619
2620
|
);
|
|
2621
|
+
}
|
|
2620
2622
|
}
|
|
2621
2623
|
return;
|
|
2622
2624
|
}
|