Skip to content

Commit

Permalink
Merge pull request #3750 from marmelab/fix-select-input-warnings
Browse files Browse the repository at this point in the history
[RFR] Fix SelectInput Warnings
  • Loading branch information
fzaninotto authored Sep 30, 2019
2 parents 6448d4b + df3130a commit d8a7b59
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 d8a7b59

Please sign in to comment.