fix: empty ModelExample rendering in a Response w/o content (via #5504)

* add failing test

* use falsy notSetValue for oas3SchemaForContentType
This commit is contained in:
kyle
2019-07-29 22:15:19 -05:00
committed by GitHub
parent e895fb544f
commit 39f8ceba55
3 changed files with 22 additions and 1 deletions

View File

@@ -109,7 +109,7 @@ export default class Response extends React.Component {
// Goal: find a schema value for `schema`
if(isOAS3) {
const oas3SchemaForContentType = activeMediaType.get("schema", Map({}))
const oas3SchemaForContentType = activeMediaType.get("schema")
schema = oas3SchemaForContentType ? inferSchema(oas3SchemaForContentType.toJS()) : null
specPathWithPossibleSchema = oas3SchemaForContentType ? List(["content", this.state.responseContentType, "schema"]) : specPath