fix(Set Node): Do not stringify null and undefined (#7313)

Github issue / Community forum post (link here to close automatically):
https://community.n8n.io/t/null-and-undefined-in-string-fields/31060/1
This commit is contained in:
Michael Kret
2023-10-03 11:18:33 +03:00
committed by GitHub
parent 3704760724
commit f0a66873b9
4 changed files with 24 additions and 5 deletions

View File

@@ -191,7 +191,13 @@ export async function execute(
);
}
const { name, value } = validateEntry(entry, node, i, options.ignoreConversionErrors);
const { name, value } = validateEntry(
entry,
node,
i,
options.ignoreConversionErrors,
node.typeVersion,
);
newData[name] = value;
}