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 62a7f1ebe1..457039a0a8 100644 --- a/scm-ui-components/packages/ui-components/src/forms/DropDown.js +++ b/scm-ui-components/packages/ui-components/src/forms/DropDown.js @@ -5,6 +5,7 @@ import classNames from "classnames"; type Props = { options: string[], + optionValues?: string[], optionSelected: string => void, preselectedOption?: string, className: any, @@ -13,7 +14,7 @@ type Props = { class DropDown extends React.Component { render() { - const { options, preselectedOption, className, disabled } = this.props; + const { options, optionValues, preselectedOption, className, disabled } = this.props; return (