Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
fix error message placement by moving form-group class to parent
Browse files Browse the repository at this point in the history
  • Loading branch information
mickmister committed Mar 24, 2021
1 parent 49b1158 commit 51fa36e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default class AppsFormSelectField extends React.PureComponent<Props, Stat
const value = this.props.value || [];

return (
<div className='form-group'>
<div>
<AsyncSelect
id={`MultiInput_${field.name}`}
loadOptions={this.loadDynamicOptions}
Expand All @@ -96,7 +96,7 @@ export default class AppsFormSelectField extends React.PureComponent<Props, Stat
const value = this.props.value || {};

return (
<div className='form-group'>
<div>
<ReactSelect
id={`MultiInput_${field.name}`}
options={options}
Expand All @@ -123,7 +123,7 @@ export default class AppsFormSelectField extends React.PureComponent<Props, Stat
}

return (
<div>
<div className='form-group'>
<label>
{label}
</label>
Expand Down

0 comments on commit 51fa36e

Please sign in to comment.