Skip to content

Commit 1ea8500

Browse files
[ILM] Fix alignment of the timing field (#71273) (#71581)
1 parent ba90af0 commit 1ea8500

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

x-pack/plugins/index_lifecycle_management/public/application/sections/edit_policy/components/min_age_input.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export const MinAgeInput = (props) => {
179179

180180
return (
181181
<EuiFlexGroup>
182-
<EuiFlexItem style={{ maxWidth: 188 }}>
182+
<EuiFlexItem style={{ maxWidth: 140 }}>
183183
<ErrableFormRow
184184
id={`${phase}-${PHASE_ROLLOVER_MINIMUM_AGE}`}
185185
label={getTimingLabelForPhase(phase)}
@@ -208,7 +208,7 @@ export const MinAgeInput = (props) => {
208208
/>
209209
</ErrableFormRow>
210210
</EuiFlexItem>
211-
<EuiFlexItem style={{ maxWidth: 220 }}>
211+
<EuiFlexItem style={{ maxWidth: 236 }}>
212212
<EuiFormRow hasEmptyLabelSpace>
213213
<EuiSelect
214214
aria-label={getUnitsAriaLabelForPhase(phase)}

x-pack/plugins/index_lifecycle_management/public/application/sections/edit_policy/components/snapshot_policies/snapshot_policies.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ export const SnapshotPolicies: React.FunctionComponent<Props> = ({ value, onChan
8888
<EuiSpacer size="m" />
8989
<EuiCallOut
9090
data-test-subj="noPoliciesCallout"
91-
size="s"
9291
iconType="help"
9392
color="warning"
9493
title={

0 commit comments

Comments
 (0)