1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

fix JSONata evaluation of inject button

This commit is contained in:
Hiroyasu Nishiyama 2022-05-27 11:44:56 +09:00 committed by Steve-Mcl
parent a2de514c05
commit 4b4e5a0861

View File

@ -109,9 +109,10 @@ module.exports = function(RED) {
if (!property) return; if (!property) return;
if (valueType === "jsonata") { if (valueType === "jsonata") {
if (p.exp) { if (p.v) {
try { 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); RED.util.setMessageProperty(msg, property, val, true);
} }
catch (err) { catch (err) {