fix(core): Fix issue with current executions not getting displayed (#3093)

This commit is contained in:
Omar Ajoue
2022-04-06 13:53:21 +02:00
committed by GitHub
parent 1b2e9be5a9
commit 4af5168b3b

View File

@@ -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;
}