Skip to content

Commit

Permalink
Consistent positioning of Timepicker in SearchBar (elastic#43255)
Browse files Browse the repository at this point in the history
* resolves elastic#41900
  • Loading branch information
Liza Katz committed Aug 15, 2019
1 parent 838bb39 commit a467732
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 a467732

Please sign in to comment.