mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34: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) {
|
for (const data of executingWorkflows) {
|
||||||
if (
|
if (
|
||||||
(filter.workflowId !== undefined && filter.workflowId !== data.workflowId) ||
|
(filter.workflowId !== undefined && filter.workflowId !== data.workflowId) ||
|
||||||
!sharedWorkflowIds.includes(data.workflowId)
|
!sharedWorkflowIds.includes(data.workflowId.toString())
|
||||||
) {
|
) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue