Skip to content

Commit

Permalink
add missing prop type value
Browse files Browse the repository at this point in the history
  • Loading branch information
Onurcankaratay committed Aug 7, 2024
1 parent 9115d6c commit 37136e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ _defineProperty(Term, "propTypes", {
term: PropTypes.string
}),
'onClick': PropTypes.func.isRequired,
'status': PropTypes.oneOf(["none", "selected", "omitted"]),
'status': PropTypes.oneOf(["none", "selected", "omitted", "partial"]),
'getTermStatus': PropTypes.func.isRequired,
'termTransformFxn': PropTypes.func,
'useRadioIcon': PropTypes.bool.isRequired,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class Term extends React.PureComponent {
'isFiltering' : PropTypes.bool,
'filteringFieldTerm': PropTypes.shape({ field: PropTypes.string, term: PropTypes.string }),
'onClick' : PropTypes.func.isRequired,
'status' : PropTypes.oneOf(["none", "selected", "omitted"]),
'status' : PropTypes.oneOf(["none", "selected", "omitted", "partial"]),
'getTermStatus' : PropTypes.func.isRequired,
'termTransformFxn' : PropTypes.func,
'useRadioIcon' : PropTypes.bool.isRequired,
Expand Down

0 comments on commit 37136e0

Please sign in to comment.