diff --git a/src/components/dropdown/index.js b/src/components/dropdown/index.js index 241f299b..32dc283d 100644 --- a/src/components/dropdown/index.js +++ b/src/components/dropdown/index.js @@ -503,7 +503,8 @@ export default class Dropdown extends PureComponent { title = null == title || 'string' === typeof title? title: String(title); - + delete props.disabled; + const inputContainerStyle = this.props.disabled ? { borderBottomWidth: 0 } : {}; return ( ); }