Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ayatnkw committed Apr 29, 2024
1 parent a3b33e6 commit e6dbef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/MySql/v2/helpers/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ export function addWhereClauses(
}

let valueReplacement = ' ';
if (clause.condition !== 'IS NULL' && clause.condition !== 'IS NOT NULL'){
if (clause.condition !== 'IS NULL' && clause.condition !== 'IS NOT NULL') {
valueReplacement = ' ?';
values.push(clause.value);
}
Expand Down

0 comments on commit e6dbef1

Please sign in to comment.