mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +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 };
|
: { __rl: true, ...nodeProperties.default };
|
||||||
} else {
|
} else {
|
||||||
nodeParameters[nodeProperties.name] =
|
nodeParameters[nodeProperties.name] =
|
||||||
nodeValues[nodeProperties.name] || nodeProperties.default;
|
nodeValues[nodeProperties.name] ?? nodeProperties.default;
|
||||||
}
|
}
|
||||||
nodeParametersFull[nodeProperties.name] = nodeParameters[nodeProperties.name];
|
nodeParametersFull[nodeProperties.name] = nodeParameters[nodeProperties.name];
|
||||||
} else if (
|
} else if (
|
||||||
|
|||||||
Reference in New Issue
Block a user