Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Nov 18, 2022
1 parent 2e027e7 commit 9e2ee4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/components/Form/Input/Input.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const Input = props => {
}

return (
<div className={`${wrapperClassRender} row`}>
<div className={`${wrapperClassRender}`}>
{label !== '' ? (
<label htmlFor={name} className="col-sm-2 col-form-label">
{label}
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Form/Select/Select.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Select = ({ name, label, items, error, wrapperClass, selectClass, blankIte
}

return (
<div className={`${wrapperClassRender} row`}>
<div className={`${wrapperClassRender}`}>
{label !== '' ? (
<label htmlFor={name} className="col-sm-2 col-form-label">
{label}
Expand Down

0 comments on commit 9e2ee4a

Please sign in to comment.