Skip to content

Commit

Permalink
Validation messages work now again.
Browse files Browse the repository at this point in the history
  • Loading branch information
kreinhard committed Nov 2, 2018
1 parent f94bad0 commit d73635f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import {connect} from 'react-redux';
import {Form, FormFeedback, UncontrolledTooltip} from 'reactstrap';
import {Form, FormFeedback, Input, UncontrolledTooltip} from 'reactstrap';
import {saveTemplateRunConfiguration} from '../../../actions';
import {getResponseHeaderFilename, getRestServiceUrl} from '../../../utilities/global';
import downloadFile from '../../../utilities/download';
Expand Down Expand Up @@ -162,7 +162,7 @@ class TemplateRunTab extends React.Component {
}
var {fieldLength, ...other} = formControlProps;
const type = (item.type === 'STRING') ? 'text' : item.type;
formControl = <input type={type} id={tagId} name={name} className={'form-control form-control-sm'}
formControl = <Input type={type} id={tagId} name={name} className={'form-control form-control-sm'}
{...other}
/>;
}
Expand Down

0 comments on commit d73635f

Please sign in to comment.