mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-19 06:37:10 +00:00
Fix for issue 13272 - Syntax error in generated html (#13293)
This commit is contained in:
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user