mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -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(
|
returnData.push(
|
||||||
{
|
{
|
||||||
idActive: data.id.toString(),
|
idActive: data.id.toString(),
|
||||||
workflowId: data.workflowId.toString(),
|
workflowId: data.workflowId === undefined ? '' : data.workflowId.toString(),
|
||||||
mode: data.mode,
|
mode: data.mode,
|
||||||
retryOf: data.retryOf,
|
retryOf: data.retryOf,
|
||||||
startedAt: new Date(data.startedAt),
|
startedAt: new Date(data.startedAt),
|
||||||
|
|
Loading…
Reference in a new issue