fix(regression): model rendering for Swagger 2.0 body parameters (#4424)

* Fix model rendering for parameters

* tests(e2e): add test confirming that Pet model is shown in operation
This commit is contained in:
Aleksey Ganzha
2018-04-14 01:57:32 +02:00
committed by kyle
parent 9a121ea445
commit 26d0ad7684
2 changed files with 20 additions and 10 deletions

View File

@@ -197,7 +197,7 @@ export default class ParameterRow extends Component {
getConfigs={ getConfigs }
isExecute={ isExecute }
specSelectors={ specSelectors }
schema={ schema }
schema={ param.get("schema") }
example={ bodyParam }/>
: null
}