mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Fix parameter update bug with identically named parameters
This commit is contained in:
@@ -1417,7 +1417,7 @@ export default mixins(
|
||||
if (nodeType !== null) {
|
||||
let nodeParameters = null;
|
||||
try {
|
||||
nodeParameters = NodeHelpers.getNodeParameters(nodeType.properties, node.parameters, true, true);
|
||||
nodeParameters = NodeHelpers.getNodeParameters(nodeType.properties, node.parameters, true, false);
|
||||
} catch (e) {
|
||||
console.error(`There was a problem loading the node-parameters of node: "${node.name}"`);
|
||||
console.error(e);
|
||||
|
||||
Reference in New Issue
Block a user