formatting documents
This commit is contained in:
parent
168a1b9e0f
commit
73023f43d6
2 changed files with 2 additions and 6 deletions
|
|
@ -27,11 +27,7 @@ class Edge:
|
|||
# Get what type of input the target node is expecting
|
||||
|
||||
self.matched_type = next(
|
||||
(
|
||||
output
|
||||
for output in self.source_types
|
||||
if output in self.target_reqs
|
||||
),
|
||||
(output for output in self.source_types if output in self.target_reqs),
|
||||
None,
|
||||
)
|
||||
no_matched_type = self.matched_type is None
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ const NodeToolbarComponent = (props) => {
|
|||
props.deleteNode(props.data.id);
|
||||
}}
|
||||
>
|
||||
<Trash2 className="w-4 h-4" ></Trash2>
|
||||
<Trash2 className="w-4 h-4"></Trash2>
|
||||
</button>
|
||||
</ShadTooltip>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue