Merge pull request #3599 from influxdata/bugfix/kapacitor-form-alignment

Fix misaligned kapacitor form
pull/10616/head
Chris Henn 2018-06-08 14:16:48 -07:00 committed by GitHub
commit 28c69ff92d
2 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ class FluxForm extends PureComponent<Props> {
value={this.url}
placeholder={this.url}
onChange={onInputChange}
customClass="col-sm-6"
/>
<Input
name="name"
@ -32,6 +33,7 @@ class FluxForm extends PureComponent<Props> {
placeholder={service.name}
onChange={onInputChange}
maxLength={33}
customClass="col-sm-6"
/>
<div className="form-group form-group-submit col-xs-12 text-center">
<button

View File

@ -39,7 +39,6 @@ const KapacitorFormInput: SFC<Props> = ({
KapacitorFormInput.defaultProps = {
inputType: '',
customClass: 'col-sm-6',
}
export default KapacitorFormInput