fix(core): Fix issue with current executions not getting displayed (#3093)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user