Skip to content

Commit

Permalink
Merge pull request marmelab#2423 from TomJannes/master
Browse files Browse the repository at this point in the history
Fix Validation issues on RichTextInput [2371]
  • Loading branch information
Gildas Garcia authored Oct 12, 2018
2 parents 5ac4112 + c76f45d commit 7057c41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ra-input-rich-text/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class RichTextInput extends Component {
const { error, helperText = false } = this.props.meta;
return (
<FormControl
error={error}
error={error !== null && error != undefined}
fullWidth={this.props.fullWidth}
className="ra-rich-text-input"
>
Expand Down

0 comments on commit 7057c41

Please sign in to comment.