feat(editor): Expose View Execution links for erroneous sub-executions (#13185)

This commit is contained in:
Charlie Kolb
2025-02-13 09:44:52 +01:00
committed by GitHub
parent 85deff0b7f
commit 11cf1cd23a
14 changed files with 261 additions and 13 deletions

View File

@@ -295,6 +295,8 @@ async function startExecution(
throw objectToError(
{
...executionError,
executionId,
workflowId: workflowData.id,
stack: executionError?.stack,
message: executionError?.message,
},
@@ -322,6 +324,8 @@ async function startExecution(
throw objectToError(
{
...error,
executionId,
workflowId: workflowData.id,
stack: error?.stack,
},
workflow,