Fix for issue 13272 - Syntax error in generated html (#13293)

This commit is contained in:
Scott Coldwell 2022-08-27 01:42:11 -04:00 committed by GitHub
parent b7c224b374
commit eaa80be526
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -456,6 +456,7 @@
if (schema.properties[item].$ref != null) { if (schema.properties[item].$ref != null) {
schema.properties[item] = defsParser.$refs.get(schema.properties[item].$ref); schema.properties[item] = defsParser.$refs.get(schema.properties[item].$ref);
} }
});
} else if (schema.items != null && schema.items.$ref != null) { } else if (schema.items != null && schema.items.$ref != null) {
schema.items = defsParser.$refs.get(schema.items.$ref); schema.items = defsParser.$refs.get(schema.items.$ref);
} else { } else {