feat(Postgres Node): Add option IS NOT NULL and hide value input fields (#9241)
This commit is contained in:
@@ -413,7 +413,7 @@ export function addWhereClauses(
|
||||
}
|
||||
|
||||
let valueReplacement = ' ';
|
||||
if (clause.condition !== 'IS NULL') {
|
||||
if (clause.condition !== 'IS NULL' && clause.condition !== 'IS NOT NULL') {
|
||||
valueReplacement = ' ?';
|
||||
values.push(clause.value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user