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

View File

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