Fix misaligned kapacitor form

pull/10616/head
Christopher Henn 2018-06-07 16:36:48 -07:00
parent 2d03fbc234
commit c0bbdee93e
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