From 1c2d0542be58c50d25cfda7d1bea1f4b6a5a2733 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Sun, 6 Sep 2015 13:41:51 -0700 Subject: [PATCH] [fixed] Set the disabled css class so that the text is greyed out. --- src/Dropdown.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Dropdown.js b/src/Dropdown.js index 57d35a9dd0..775f252a03 100644 --- a/src/Dropdown.js +++ b/src/Dropdown.js @@ -90,6 +90,7 @@ class Dropdown extends React.Component { const rootClasses = { open: this.props.open, + disabled: this.props.disabled, dropdown: !this.props.dropup, dropup: this.props.dropup };