Skip to content

Commit

Permalink
fix(core): Fix executions list filtering by waiting status (#3241)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov authored May 6, 2022
1 parent ff2bf11 commit 71afcd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/Server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 71afcd6

Please sign in to comment.