Skip to content

Commit

Permalink
fix(editor): Fix parameter loading bug (#3374)
Browse files Browse the repository at this point in the history
* fix parameter loading bug

* remove duplicate check
  • Loading branch information
mutdmour authored May 25, 2022
1 parent 1de364e commit c7c2061
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/editor-ui/src/components/ParameterInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {};
Expand Down

0 comments on commit c7c2061

Please sign in to comment.