mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-13 05:47:31 -08:00
🐛 Fix bug that it did display running workflows as unsaved
This commit is contained in:
parent
f8db495e0f
commit
a1b95918de
|
@ -916,7 +916,7 @@ class App {
|
||||||
returnData.push(
|
returnData.push(
|
||||||
{
|
{
|
||||||
idActive: data.id.toString(),
|
idActive: data.id.toString(),
|
||||||
workflowId: data.workflowId,
|
workflowId: 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