From 24c0ac3ce50d6a13f68c104a6d196d18329d10a2 Mon Sep 17 00:00:00 2001 From: Alexander Lichter Date: Mon, 15 Oct 2018 15:27:40 +0100 Subject: [PATCH 1/2] docs(dropdown): fix options doc blox rename checkbox to dropdown --- src/components/Dropdown.react.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Dropdown.react.js b/src/components/Dropdown.react.js index e64442cee..bc38c4bd0 100644 --- a/src/components/Dropdown.react.js +++ b/src/components/Dropdown.react.js @@ -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. */ disabled: PropTypes.bool, }) From b816c7e92c97a320b64f4bbaf0865ddc7d3f7fe8 Mon Sep 17 00:00:00 2001 From: Alexander Lichter Date: Mon, 15 Oct 2018 20:43:58 +0100 Subject: [PATCH 2/2] fix: typo --- src/components/Dropdown.react.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Dropdown.react.js b/src/components/Dropdown.react.js index bc38c4bd0..a767510fa 100644 --- a/src/components/Dropdown.react.js +++ b/src/components/Dropdown.react.js @@ -123,7 +123,7 @@ Dropdown.propTypes = { value: PropTypes.string, /** - * If true, this dropdown is disabled and items can't be seleted. + * If true, this dropdown is disabled and items can't be selected. */ disabled: PropTypes.bool, })