From c05b66f4d465e75ef82069da1d8d7a5dd73439dd Mon Sep 17 00:00:00 2001 From: shockey Date: Tue, 6 Jun 2017 11:28:27 -0700 Subject: [PATCH] Remove `displayOperationId` as prop to Operations This appears to be a mistake. Operations should get `displayOperationId` from `getConfigs`, not from a prop. --- src/core/components/operations.jsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/core/components/operations.jsx b/src/core/components/operations.jsx index fe3505a0..16c8a86e 100644 --- a/src/core/components/operations.jsx +++ b/src/core/components/operations.jsx @@ -10,14 +10,9 @@ export default class Operations extends React.Component { layoutActions: PropTypes.object.isRequired, authActions: PropTypes.object.isRequired, authSelectors: PropTypes.object.isRequired, - displayOperationId: PropTypes.bool, getConfigs: PropTypes.func.isRequired }; - static defaultProps = { - displayOperationId: false - }; - render() { let { specSelectors, @@ -27,7 +22,6 @@ export default class Operations extends React.Component { layoutActions, authActions, authSelectors, - displayOperationId, getConfigs, fn } = this.props