From 4af5168b3bc92578dc807bab1c11e3d90e151928 Mon Sep 17 00:00:00 2001 From: Omar Ajoue Date: Wed, 6 Apr 2022 13:53:21 +0200 Subject: [PATCH] fix(core): Fix issue with current executions not getting displayed (#3093) --- packages/cli/src/Server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/Server.ts b/packages/cli/src/Server.ts index e87b36e81f91d..b765cef8059b3 100644 --- a/packages/cli/src/Server.ts +++ b/packages/cli/src/Server.ts @@ -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; }