Skip to content
This repository was archived by the owner on Feb 5, 2021. It is now read-only.

Commit 9c354f1

Browse files
Minolianuruddhal
authored andcommitted
Fix additional component dependencies
1 parent d41e3e3 commit 9c354f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/designer/src/components/DesignerView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ class DesignerView extends React.Component {
890890
childNodes.forEach((node, index) => {
891891
node.dependencies = {};
892892
this.graph.edges.forEach((edge, index) => {
893-
if (node.id === edge.from) {
893+
if(node.id === edge.from && edge.label.length > 0){
894894
node.dependencies[edge.label] = edge.to;
895895
}
896896
});

0 commit comments

Comments
 (0)