diff --git a/source/components/conversation/FormDecorator.js b/source/components/conversation/FormDecorator.js index f20b926ba..57a73c2c8 100644 --- a/source/components/conversation/FormDecorator.js +++ b/source/components/conversation/FormDecorator.js @@ -24,8 +24,7 @@ export var FormDecorator = formType => RenderField => }), dispatch => ({ stepAction: (name, step) => dispatch(stepAction(name, step)), - setFormValue: (field, value) => console.log(field, value) || - dispatch(change('conversation', field, value)) + setFormValue: (field, value) => dispatch(change('conversation', field, value)) }) ) class extends Component { diff --git a/source/components/conversation/IgnoreStepButton.css b/source/components/conversation/IgnoreStepButton.css index 90963ea23..76873ae8a 100644 --- a/source/components/conversation/IgnoreStepButton.css +++ b/source/components/conversation/IgnoreStepButton.css @@ -1,5 +1,9 @@ -#ignore, #ignore:visited { +#ignore { + position: relative; +} + +#ignoreButton, #ignoreButton:visited { cursor: pointer; color: #444; font-weight: 200; @@ -9,14 +13,3 @@ line-height: 1.2em; font-style: italic; } - -#ignoreIcon { - font-size: 80%; - font-weight: bold; - background: #ddd; - color: white; - margin-right: .6em; - padding: .5em .4em; - border-radius: .2em; - transition: .2s opacity; -} diff --git a/source/components/conversation/IgnoreStepButton.js b/source/components/conversation/IgnoreStepButton.js index 36574b514..233a8cc56 100644 --- a/source/components/conversation/IgnoreStepButton.js +++ b/source/components/conversation/IgnoreStepButton.js @@ -19,11 +19,11 @@ export default class IgnoreStepButton extends Component { } render() { return ( -