diff --git a/src/core/components/operation.jsx b/src/core/components/operation.jsx index 78a9c3fe..d2386521 100644 --- a/src/core/components/operation.jsx +++ b/src/core/components/operation.jsx @@ -13,6 +13,7 @@ export default class Operation extends PureComponent { onExecute: PropTypes.func.isRequired, getComponent: PropTypes.func.isRequired, + getConfigs: PropTypes.func.isRequired, authActions: PropTypes.object, authSelectors: PropTypes.object, specActions: PropTypes.object.isRequired, @@ -42,6 +43,7 @@ export default class Operation extends PureComponent { onExecute, fn, getComponent, + getConfigs, specActions, specSelectors, authActions, diff --git a/src/core/containers/OperationContainer.jsx b/src/core/containers/OperationContainer.jsx index 139fe2e3..103bdcfd 100644 --- a/src/core/containers/OperationContainer.jsx +++ b/src/core/containers/OperationContainer.jsx @@ -157,6 +157,7 @@ export default class Operation extends PureComponent { specSelectors, specActions, getComponent, + getConfigs, layoutSelectors, layoutActions, authActions, @@ -202,6 +203,7 @@ export default class Operation extends PureComponent { authActions={ authActions } authSelectors={ authSelectors } getComponent={ getComponent } + getConfigs={ getConfigs } fn={fn} /> )