fix(editor): Fix the regression in runWorkflow, introduced in #9977 (no-changelog) (#9988)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-07-10 08:52:19 +02:00
committed by GitHub
parent c8ad7ccd72
commit e8e3d44146

View File

@@ -279,9 +279,11 @@ export function useRunWorkflow(useRunWorkflowOpts: { router: ReturnType<typeof u
if (node.name === options.destinationNode || !node.disabled) {
let testUrl = '';
const nodeType = nodeTypesStore.getNodeType(node.type, node.typeVersion);
if (nodeType?.webhooks?.length) {
testUrl = workflowHelpers.getWebhookUrl(nodeType.webhooks[0], node, 'test');
if (node.type === FORM_TRIGGER_NODE_TYPE) {
const nodeType = nodeTypesStore.getNodeType(node.type, node.typeVersion);
if (nodeType?.webhooks?.length) {
testUrl = workflowHelpers.getWebhookUrl(nodeType.webhooks[0], node, 'test');
}
}
if (