mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
fix(core): Fix executions list filtering by waiting status (#3241)
This commit is contained in:
parent
ff2bf1112f
commit
71afcd6314
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue