diff --git a/packages/components/combobox/index.js b/packages/components/combobox/index.js index c6497d1cf4..1536c18db0 100644 --- a/packages/components/combobox/index.js +++ b/packages/components/combobox/index.js @@ -108,6 +108,7 @@ class ComboBox extends React.Component { isPersonal, offsetLeft, modernView, + withBackdrop, } = this.props; const { isOpen, selectedOption } = this.state; @@ -179,6 +180,7 @@ class ComboBox extends React.Component { isExternalLink={isExternalLink} isPersonal={isPersonal} offsetLeft={offsetLeft} + withBackdrop={withBackdrop} > {advancedOptions ? advancedOptions @@ -228,6 +230,8 @@ ComboBox.propTypes = { id: PropTypes.string, /** Accepts id for dropdown container */ dropDownId: PropTypes.string, + /** Indicates that component will have backdrop */ + withBackdrop: PropTypes.bool, /** Indicates that component is disabled */ isDisabled: PropTypes.bool, /** Indicates that component is displayed without borders */