mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🐛 Fix another instance where it sets the wrong parameter
This commit is contained in:
parent
1b7821d584
commit
d761efbd02
|
@ -379,7 +379,7 @@ export default mixins(
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get only the parameters which are different to the defaults
|
// Get only the parameters which are different to the defaults
|
||||||
let nodeParameters = NodeHelpers.getNodeParameters(nodeType.properties, node.parameters, false, false, node.typeVersion);
|
let nodeParameters = NodeHelpers.getNodeParameters(nodeType.properties, node.parameters, false, false, node);
|
||||||
const oldNodeParameters = Object.assign({}, nodeParameters);
|
const oldNodeParameters = Object.assign({}, nodeParameters);
|
||||||
|
|
||||||
// Copy the data because it is the data of vuex so make sure that
|
// Copy the data because it is the data of vuex so make sure that
|
||||||
|
|
Loading…
Reference in a new issue