mirror of
https://github.com/Readarr/Readarr
synced 2026-03-20 11:33:35 +01:00
Fix proptype warning for id of EnhancedSelectInputOption
Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
parent
ed1175ed86
commit
5a4034ec6a
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ class EnhancedSelectInputOption extends Component {
|
|||
|
||||
EnhancedSelectInputOption.propTypes = {
|
||||
className: PropTypes.string.isRequired,
|
||||
id: PropTypes.string.isRequired,
|
||||
id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
|
||||
isSelected: PropTypes.bool.isRequired,
|
||||
isDisabled: PropTypes.bool.isRequired,
|
||||
isHidden: PropTypes.bool.isRequired,
|
||||
|
|
|
|||
Loading…
Reference in a new issue