diff --git a/src/components/custom-procedures/custom-procedures.jsx b/src/components/custom-procedures/custom-procedures.jsx index e8e0e18a7b9c62b9f0c2445c7176e3f6ad742bf6..9d349811527fc7adc39d60af32957eb477e3102b 100644 --- a/src/components/custom-procedures/custom-procedures.jsx +++ b/src/components/custom-procedures/custom-procedures.jsx @@ -35,7 +35,7 @@ const CustomProcedures = props => ( <div className={styles.optionTitle}> <FormattedMessage defaultMessage="Add an input" - description="Label for button to add a numeric" + description="Label for button to add a number/text input" id="gui.customProcedures.addAnInputNumberText" /> </div> @@ -92,7 +92,7 @@ const CustomProcedures = props => ( </div> </div> <div className={styles.checkboxRow}> - {/* @todo Implement "run without screen refresh" */} + {/* @todo (#993) Implement "run without screen refresh" */} {/* <label><input type="checkbox" />Run without screen refresh</label> */} </div> <Box className={styles.buttonRow}> diff --git a/src/containers/custom-procedures.jsx b/src/containers/custom-procedures.jsx index 8fcf8cb93f974fb8482c45905e666eaa35fc8346..ce0e7963f82d60ddae10b37e673061677a79db30 100644 --- a/src/containers/custom-procedures.jsx +++ b/src/containers/custom-procedures.jsx @@ -125,9 +125,7 @@ const mapStateToProps = state => ({ mutator: state.customProcedures.mutator }); -const mapDispatchToProps = () => ({}); - export default connect( mapStateToProps, - mapDispatchToProps + () => ({}) // omit dispatch prop )(CustomProcedures);