Merge pull request #3599 from influxdata/bugfix/kapacitor-form-alignment
Fix misaligned kapacitor formpull/10616/head
commit
28c69ff92d
|
@ -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
|
||||
|
|
|
@ -39,7 +39,6 @@ const KapacitorFormInput: SFC<Props> = ({
|
|||
|
||||
KapacitorFormInput.defaultProps = {
|
||||
inputType: '',
|
||||
customClass: 'col-sm-6',
|
||||
}
|
||||
|
||||
export default KapacitorFormInput
|
||||
|
|
Loading…
Reference in New Issue