Skip to content

Commit

Permalink
Fix SelectInput warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
djhi committed Sep 30, 2019
1 parent eb3d74d commit df3130a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ra-ui-materialui/src/input/SelectInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ SelectInput.propTypes = {
allowEmpty: PropTypes.bool.isRequired,
emptyText: PropTypes.oneOfType([PropTypes.string, PropTypes.element]),
emptyValue: PropTypes.any,
choices: PropTypes.arrayOf(PropTypes.object).isRequired,
choices: PropTypes.arrayOf(PropTypes.object),
classes: PropTypes.object,
className: PropTypes.string,
label: PropTypes.string,
Expand Down

0 comments on commit df3130a

Please sign in to comment.