mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-23 11:44:06 -08:00
fix(core): Fix issue with current executions not getting displayed (#3093)
This commit is contained in:
parent
1b2e9be5a9
commit
4af5168b3b
|
@ -2660,7 +2660,7 @@ class App {
|
|||
for (const data of executingWorkflows) {
|
||||
if (
|
||||
(filter.workflowId !== undefined && filter.workflowId !== data.workflowId) ||
|
||||
!sharedWorkflowIds.includes(data.workflowId)
|
||||
!sharedWorkflowIds.includes(data.workflowId.toString())
|
||||
) {
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue