mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04:06 -08:00
🐛 Fix issue of current execution query with unsaved running workflow
This commit is contained in:
parent
e53efdd337
commit
53234770a7
|
@ -1687,7 +1687,7 @@ class App {
|
|||
returnData.push(
|
||||
{
|
||||
idActive: data.id.toString(),
|
||||
workflowId: data.workflowId.toString(),
|
||||
workflowId: data.workflowId === undefined ? '' : data.workflowId.toString(),
|
||||
mode: data.mode,
|
||||
retryOf: data.retryOf,
|
||||
startedAt: new Date(data.startedAt),
|
||||
|
|
Loading…
Reference in a new issue