Fix url not being captured in kapacitor form

pull/2945/head
Andrew Watkins 2018-03-07 10:59:22 -08:00 committed by Luke Morris
parent 156ee2007c
commit 97f6de5386
1 changed files with 2 additions and 2 deletions

View File

@ -60,8 +60,8 @@ class KapacitorPage extends Component {
}) })
} }
handleChangeUrl = ({value}) => { handleChangeUrl = e => {
this.setState({kapacitor: {...this.state.kapacitor, url: value}}) this.setState({kapacitor: {...this.state.kapacitor, url: e.target.value}})
} }
handleSubmit = e => { handleSubmit = e => {