mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-07-04 06:30:52 +00:00
Fix for issue 13272 - Syntax error in generated html (#13293)
This commit is contained in:
parent
b7c224b374
commit
eaa80be526
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user