Skip to content

Commit

Permalink
fix(core): Fix issue with current executions not getting displayed (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
krynble committed Apr 6, 2022
1 parent 1b2e9be commit 4af5168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/Server.ts
Expand Up @@ -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;
}
Expand Down

0 comments on commit 4af5168

Please sign in to comment.