From 71afcd6314a73ab6cc04e22afd69e86ca764bd42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Fri, 6 May 2022 17:20:33 +0200 Subject: [PATCH] fix(core): Fix executions list filtering by waiting status (#3241) --- 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 7e4af8414..e52ac7f80 100644 --- a/packages/cli/src/Server.ts +++ b/packages/cli/src/Server.ts @@ -2269,7 +2269,7 @@ class App { let filterToAdd = {}; if (key === 'waitTill') { - filterToAdd = { waitTill: !IsNull() }; + filterToAdd = { waitTill: Not(IsNull()) }; } else if (key === 'finished' && value === false) { filterToAdd = { finished: false, waitTill: IsNull() }; } else {