diff --git a/src/app/components/OptionalDropdown/OptionalDropdown.jsx b/src/app/components/OptionalDropdown/OptionalDropdown.jsx index f52b316e31..0c739c5d38 100644 --- a/src/app/components/OptionalDropdown/OptionalDropdown.jsx +++ b/src/app/components/OptionalDropdown/OptionalDropdown.jsx @@ -7,7 +7,7 @@ import styles from './styles.styl'; // TODO: to be improved const OptionalDropdown = (props) => { - const { hidden, title, titleTip, onClick, children, ...rest } = props; + const { hidden, title, titleTip, onClick, disabled = false, children, ...rest } = props; return (
@@ -16,6 +16,7 @@ const OptionalDropdown = (props) => {