Basic request body

This commit is contained in:
Kyle Shockey
2017-05-26 00:24:53 -07:00
parent 128b910d58
commit 032c0a027f
5 changed files with 51 additions and 3 deletions

View File

@@ -217,7 +217,7 @@ class Model extends Component {
}
render () {
let { schema, required, name, isRef } = this.props
let { schema, required, name, isRef, getComponent } = this.props
let $$ref = schema && schema.get("$$ref")
let modelName = $$ref && this.getModelName( $$ref )
let modelSchema, type

View File

@@ -189,6 +189,7 @@ export default class Operation extends React.Component {
}
<Parameters
parameters={parameters}
operation={operation}
onChangeKey={onChangeKey}
onTryoutClick = { this.onTryoutClick }
onCancelClick = { this.onCancelClick }