fix(editor): Fix parameter loading bug (#3374)

* fix parameter loading bug

* remove duplicate check
This commit is contained in:
Mutasem Aldmour 2022-05-25 10:15:51 +02:00 committed by GitHub
parent 1de364e2a6
commit c7c2061590
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 = {};