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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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