perf: search key refresh parentId (#5530)

This commit is contained in:
Archer
2025-08-26 11:30:02 +08:00
committed by GitHub
parent 830eb19055
commit 3b25bf57c4
9 changed files with 73 additions and 71 deletions

View File

@@ -776,14 +776,6 @@ export async function dispatchWorkFlow(data: Props): Promise<DispatchFlowRespons
});
});
// Focus try to run pluginOutput
const pluginOutputModule = runtimeNodes.find(
(item) => item.flowNodeType === FlowNodeTypeEnum.pluginOutput
);
if (pluginOutputModule && data.mode !== 'debug') {
workflowQueue.nodeRunWithActive(pluginOutputModule);
}
// Get interactive node response.
const interactiveResult = (() => {
if (workflowQueue.nodeInteractiveResponse) {

View File

@@ -12,7 +12,6 @@ export const dispatchPluginOutput = (props: PluginOutputProps): PluginOutputResp
return {
[DispatchNodeResponseKeyEnum.nodeResponse]: {
totalPoints: 0,
pluginOutput: params
}
};