mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00: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:
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user