mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix: Fix replacing node empty string value with default value (no-changelog) (#6832)
fix: fix replacing node empty string value with default value
This commit is contained in:
parent
848e9b1172
commit
fb755db9bd
|
@ -635,7 +635,7 @@ export function getNodeParameters(
|
|||
: { __rl: true, ...nodeProperties.default };
|
||||
} else {
|
||||
nodeParameters[nodeProperties.name] =
|
||||
nodeValues[nodeProperties.name] || nodeProperties.default;
|
||||
nodeValues[nodeProperties.name] ?? nodeProperties.default;
|
||||
}
|
||||
nodeParametersFull[nodeProperties.name] = nodeParameters[nodeProperties.name];
|
||||
} else if (
|
||||
|
|
Loading…
Reference in a new issue