Update groupnode/component to be compatible with frontend v1.2.64 (#1084)

This commit is contained in:
bymyself
2024-09-25 16:33:14 -07:00
committed by GitHub
parent f3e9856107
commit 32430968b8
3 changed files with 13 additions and 11 deletions

View File

@@ -1135,7 +1135,7 @@ async def extract_nodes_from_workflow(filepath, mode='local', channel_url='defau
if node_name in ['Reroute', 'Note']:
continue
if node_name is not None and not node_name.startswith('workflow/'):
if node_name is not None and not (node_name.startswith('workflow/') or node_name.startswith('workflow>')):
used_nodes.add(node_name)
if 'nodes' in workflow: