From 8426dcdf7b10c2f428c3cdb152beb5d0417b1906 Mon Sep 17 00:00:00 2001 From: Owen Conti Date: Sun, 20 Aug 2017 08:16:02 -0600 Subject: [PATCH] Fix failed test due to removed `getConfigs` --- src/core/components/operation.jsx | 2 ++ src/core/containers/OperationContainer.jsx | 2 ++ 2 files changed, 4 insertions(+) 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} /> )