mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Fix parameter loading bug (#3374)
* fix parameter loading bug * remove duplicate check
This commit is contained in:
@@ -549,7 +549,6 @@ export default mixins(
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (const checkValue of checkValues) {
|
for (const checkValue of checkValues) {
|
||||||
if (checkValue !== undefined && checkValue.includes(CUSTOM_API_CALL_KEY)) continue;
|
|
||||||
if (checkValue === null || !validOptions.includes(checkValue)) {
|
if (checkValue === null || !validOptions.includes(checkValue)) {
|
||||||
if (issues.parameters === undefined) {
|
if (issues.parameters === undefined) {
|
||||||
issues.parameters = {};
|
issues.parameters = {};
|
||||||
|
|||||||
Reference in New Issue
Block a user