Pass system to OperationContainer through getComponent

This commit is contained in:
Kyle Shockey
2017-11-16 21:03:31 -08:00
parent 2ce199c151
commit 6ab3f9e938
2 changed files with 4 additions and 13 deletions

View File

@@ -126,17 +126,6 @@ export default class Operations extends React.Component {
path={path} path={path}
method={method} method={method}
tag={tag} tag={tag}
specActions={ specActions }
specSelectors={ specSelectors }
oas3Actions={oas3Actions}
layoutActions={ layoutActions }
layoutSelectors={ layoutSelectors }
authActions={ authActions }
authSelectors={ authSelectors }
getComponent={ getComponent }
fn={fn}
getConfigs={ getConfigs }
/> />
}).toArray() }).toArray()
} }

View File

@@ -161,6 +161,7 @@ export default class OperationContainer extends PureComponent {
layoutActions, layoutActions,
authActions, authActions,
authSelectors, authSelectors,
oas3Actions,
fn fn
} = this.props } = this.props
@@ -198,6 +199,7 @@ export default class OperationContainer extends PureComponent {
specActions={ specActions } specActions={ specActions }
specSelectors={ specSelectors } specSelectors={ specSelectors }
oas3Actions={oas3Actions}
layoutActions={ layoutActions } layoutActions={ layoutActions }
layoutSelectors={ layoutSelectors } layoutSelectors={ layoutSelectors }
authActions={ authActions } authActions={ authActions }