diff --git a/source/components/conversation/Input.js b/source/components/conversation/Input.js index 50821e296..f046861cd 100644 --- a/source/components/conversation/Input.js +++ b/source/components/conversation/Input.js @@ -112,6 +112,9 @@ export default class Input extends Component { onClick={() => { this.setState({ lastValue: null }) setFormValue('' + value) + if (this.state.suggestion !== value) + this.setState({ suggestion: value }) + else this.props.stepProps.submit() }} onMouseOver={() => { this.setState({ lastValue: this.props.input.value })