Merge branch 'master' into master

This commit is contained in:
sonics007
2024-11-21 14:41:36 +01:00
committed by GitHub
4 changed files with 48 additions and 15 deletions

View File

@@ -113,6 +113,10 @@ async function evaluateEnvProperties(flow, env, credentials) {
resolve()
});
}))
} else if (type === "conf-type" && /^\${[^}]+}$/.test(value)) {
// Get the config node from the parent subflow
const name = value.substring(2, value.length - 1);
value = flow.getSetting(name);
} else {
try {
value = redUtil.evaluateNodeProperty(value, type, {_flow: flow}, null, null);