fix(core): Fix call to /executions-current with unsaved workflow (#3280)
This commit is contained in:
@@ -2658,7 +2658,8 @@ class App {
|
||||
for (const data of executingWorkflows) {
|
||||
if (
|
||||
(filter.workflowId !== undefined && filter.workflowId !== data.workflowId) ||
|
||||
!sharedWorkflowIds.includes(data.workflowId.toString())
|
||||
(data.workflowId !== undefined &&
|
||||
!sharedWorkflowIds.includes(data.workflowId.toString()))
|
||||
) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user