Merge pull request #3632 from node-red-hitachi/fix-inject-of-JSONata

Fix JSONata evaluation of inject button
This commit is contained in:
Nick O'Leary
2022-06-09 16:00:23 -05:00
committed by GitHub
2 changed files with 5 additions and 2 deletions

View File

@@ -109,9 +109,10 @@ module.exports = function(RED) {
if (!property) return;
if (valueType === "jsonata") {
if (p.exp) {
if (p.v) {
try {
var val = RED.util.evaluateJSONataExpression(p.exp, msg);
var exp = RED.util.prepareJSONataExpression(p.v, node);
var val = RED.util.evaluateJSONataExpression(exp, msg);
RED.util.setMessageProperty(msg, property, val, true);
}
catch (err) {