Web: Components: Fixed direction property of ComboBox component

This commit is contained in:
Ilya Oleshko 2019-07-19 12:12:39 +03:00
parent 0f5fe11d46
commit fb5af4ef0a

View File

@ -78,7 +78,9 @@ class ComboBox extends React.Component {
isReadOnly={true} isReadOnly={true}
onIconClick={() => false} onIconClick={() => false}
> >
<DropDown direction={this.props.direction || 'left'} <DropDown
directionX={this.props.directionX}
directionY={this.props.directionY}
manualWidth='100%' manualWidth='100%'
manualY='102%' manualY='102%'
isOpen={this.state.isOpen} isOpen={this.state.isOpen}