Skip to content

Commit

Permalink
Consistent positioning of Timepicker in SearchBar (#43255) (#43360)
Browse files Browse the repository at this point in the history
* resolves #41900
  • Loading branch information
Liza Katz committed Aug 15, 2019
1 parent 67924fe commit e7c5e2f
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,12 @@ export class QueryBarUI extends Component<Props, State> {
});

return (
<EuiFlexGroup className={classes} responsive={!!this.props.showDatePicker} gutterSize="s">
<EuiFlexGroup
className={classes}
responsive={!!this.props.showDatePicker}
gutterSize="s"
justifyContent="flexEnd"
>
{this.renderQueryInput()}
<EuiFlexItem grow={false}>{this.renderUpdateButton()}</EuiFlexItem>
</EuiFlexGroup>
Expand Down

0 comments on commit e7c5e2f

Please sign in to comment.