fix(core): Fix executions list filtering by waiting status (#3241)

This commit is contained in:
Iván Ovejero 2022-05-06 17:20:33 +02:00 committed by GitHub
parent ff2bf1112f
commit 71afcd6314
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {