mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
🐛 Fix bug with saving executions of unsaved workflows
This commit is contained in:
parent
f64a49318a
commit
de8e6f2811
|
@ -1323,7 +1323,7 @@ class App {
|
|||
retrySuccessId: result.retrySuccessId ? result.retrySuccessId.toString() : undefined,
|
||||
startedAt: result.startedAt,
|
||||
stoppedAt: result.stoppedAt,
|
||||
workflowId: result.workflowData!.id!.toString(),
|
||||
workflowId: result.workflowData!.id ? result.workflowData!.id!.toString() : '',
|
||||
workflowName: result.workflowData!.name,
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue