🐛 Fix issue of current execution query with unsaved running workflow

This commit is contained in:
Jan Oberhauser 2021-02-11 14:55:59 +01:00
parent e53efdd337
commit 53234770a7

View file

@ -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),