mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
fix(editor): Fix parameter loading bug (#3374)
* fix parameter loading bug * remove duplicate check
This commit is contained in:
parent
1de364e2a6
commit
c7c2061590
|
@ -549,7 +549,6 @@ export default mixins(
|
|||
}
|
||||
|
||||
for (const checkValue of checkValues) {
|
||||
if (checkValue !== undefined && checkValue.includes(CUSTOM_API_CALL_KEY)) continue;
|
||||
if (checkValue === null || !validOptions.includes(checkValue)) {
|
||||
if (issues.parameters === undefined) {
|
||||
issues.parameters = {};
|
||||
|
|
Loading…
Reference in a new issue