mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-25 07:12:40 +00:00
Fix proptype warning for id of EnhancedSelectInputOption
This commit is contained in:
parent
df7db89e8e
commit
45a3770983
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