work on igor note

This commit is contained in:
2026-03-28 18:48:25 -07:00
parent ce74cf0a3e
commit 559b1ae09a
26 changed files with 166 additions and 109 deletions

View File

@@ -1271,7 +1271,7 @@ function Flow() {
if (!isTrackedNodeRequestCurrent(loadNodeOutputRequestVersionsRef.current, nodeId, requestVersion)) {
return;
}
setNodeOutputs(nodeId, ['DATA_FIELD'], ['field'], { output_paths: [] });
setNodeOutputs(nodeId, ['FILE_PATH', 'DATA_FIELD'], ['path', 'field'], { output_paths: [] });
return;
}
@@ -1281,8 +1281,8 @@ function Flow() {
}
setNodeOutputs(
nodeId,
channels.map((channel) => channel.type),
channels.map((channel) => channel.name),
['FILE_PATH', ...channels.map((channel) => channel.type)],
['path', ...channels.map((channel) => channel.name)],
{ output_paths: [] },
);
}, [getResolvedPathInput, reactFlow, setNodeOutputs]);