Skip to content

Commit

Permalink
fix(DateInput): fix dropown placement
Browse files Browse the repository at this point in the history
  • Loading branch information
ej9x committed Jan 16, 2019
1 parent a34bb0f commit a9ec256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DateInput/DateInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ class DateInput extends React.Component<DateInputProps, DateInputState> {
<Dropdown.Head onClick={ this.open }>
<DateInputValue mask={ mask } value={ textValue } onChange={ this.onChangeText } onBlur={ this.onBlur } clearable={ clearable } />
</Dropdown.Head>
<Dropdown.Body placement="auto" withPortal preventOverflow>
<Dropdown.Body placement="bottom" withPortal preventOverflow>
<DatePicker { ...collectedProps } todayButton="Today" />
</Dropdown.Body>
</Dropdown>
Expand Down

0 comments on commit a9ec256

Please sign in to comment.