We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb21212 commit 720e282Copy full SHA for 720e282
src/services/OpenAPIParser.ts
@@ -256,7 +256,9 @@ export class OpenAPIParser {
256
if (subSchemaRef) {
257
receiver.parentRefs!.push(subSchemaRef);
258
if (receiver.title === undefined && isNamedDefinition(subSchemaRef)) {
259
- receiver.title = JsonPointer.baseName(subSchemaRef);
+ // this is not so correct behaviour. comented out for now
260
+ // ref: https://github.com/Rebilly/ReDoc/issues/601
261
+ // receiver.title = JsonPointer.baseName(subSchemaRef);
262
}
263
264
0 commit comments