diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c8e74313..672d6e489 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ ### Features 1. [#2083](https://github.com/influxdata/chronograf/pull/2083): Every dashboard can now have its own time range 1. [#2045](https://github.com/influxdata/chronograf/pull/2045): Add CSV download option in dashboard cells +1. [#2133](https://github.com/influxdata/chronograf/pull/2133): Implicitly prepend source urls with http:// ### UI Improvements 1. [#2111](https://github.com/influxdata/chronograf/pull/2111): Increase size of Cell Editor query tabs to reveal more of their query strings diff --git a/ui/src/sources/components/SourceForm.js b/ui/src/sources/components/SourceForm.js index bebb85569..21e340f33 100644 --- a/ui/src/sources/components/SourceForm.js +++ b/ui/src/sources/components/SourceForm.js @@ -1,159 +1,139 @@ -import React, {PropTypes, Component} from 'react' +import React, {PropTypes} from 'react' import classnames from 'classnames' import {insecureSkipVerifyText} from 'shared/copy/tooltipText' import _ from 'lodash' -class SourceForm extends Component { - constructor(props) { - super(props) - } +const SourceForm = ({ + source, + editMode, + onSubmit, + onInputChange, + onBlurSourceURL, +}) => +