Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

docs(dropdown): fix options doc blocks #328

Merged
merged 2 commits into from
Oct 29, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/Dropdown.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,19 +111,19 @@ Dropdown.propTypes = {
options: PropTypes.arrayOf(
PropTypes.shape({
/**
* The checkbox's label
* The dropdown's label
*/
label: PropTypes.string,

/**
* The value of the checkbox. This value
* The value of the dropdown. This value
* corresponds to the items specified in the
* `values` property.
*/
value: PropTypes.string,

/**
* If true, this checkbox is disabled and can't be clicked on.
* If true, this dropdown is disabled and items can't be seleted.
TheAlexLichter marked this conversation as resolved.
Show resolved Hide resolved
*/
disabled: PropTypes.bool,
})
Expand Down