Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ILM] Fix alignment of the timing field #71273

Merged
merged 4 commits into from
Jul 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export const MinAgeInput = (props) => {

return (
<EuiFlexGroup>
<EuiFlexItem style={{ maxWidth: 188 }}>
<EuiFlexItem style={{ maxWidth: 140 }}>
<ErrableFormRow
id={`${phase}-${PHASE_ROLLOVER_MINIMUM_AGE}`}
label={getTimingLabelForPhase(phase)}
Expand Down Expand Up @@ -208,7 +208,7 @@ export const MinAgeInput = (props) => {
/>
</ErrableFormRow>
</EuiFlexItem>
<EuiFlexItem style={{ maxWidth: 220 }}>
<EuiFlexItem style={{ maxWidth: 236 }}>
<EuiFormRow hasEmptyLabelSpace>
<EuiSelect
aria-label={getUnitsAriaLabelForPhase(phase)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ export const SnapshotPolicies: React.FunctionComponent<Props> = ({ value, onChan
<EuiSpacer size="m" />
<EuiCallOut
data-test-subj="noPoliciesCallout"
size="s"
iconType="help"
color="warning"
title={
Expand Down