diff --git a/scm-ui-components/packages/ui-components/src/forms/DropDown.js b/scm-ui-components/packages/ui-components/src/forms/DropDown.js index 5098a901f3..62a7f1ebe1 100644 --- a/scm-ui-components/packages/ui-components/src/forms/DropDown.js +++ b/scm-ui-components/packages/ui-components/src/forms/DropDown.js @@ -7,17 +7,19 @@ type Props = { options: string[], optionSelected: string => void, preselectedOption?: string, - className: any + className: any, + disabled?: boolean }; class DropDown extends React.Component { render() { - const { options, preselectedOption, className } = this.props; + const { options, preselectedOption, className, disabled } = this.props; return (