Skip to content

Commit

Permalink
CR changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sabarasaba committed May 16, 2022
1 parent fef1131 commit eca5016
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,13 @@ export const CollapsibleDataStreamsList: React.FunctionComponent<Props> = ({ dat
) : (
<>
<EuiText>
<ul>
{items.map((dataStream) => (
<li key={dataStream}>
<EuiTitle size="xs">
<span>{dataStream}</span>
</EuiTitle>
</li>
))}
</ul>
{items.map((dataStream) => (
<div key={dataStream}>
<EuiTitle size="xs">
<span>{dataStream}</span>
</EuiTitle>
</div>
))}
</EuiText>
{hiddenItemsCount ? (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,13 @@ export const CollapsibleFeatureStatesList: React.FunctionComponent<Props> = ({ f
return (
<>
<EuiText data-test-subj="featureStatesList">
<ul>
{items.map((feature) => (
<li key={feature}>
<EuiTitle size="xs">
<span>{feature}</span>
</EuiTitle>
</li>
))}
</ul>
{items.map((feature) => (
<div key={feature}>
<EuiTitle size="xs">
<span>{feature}</span>
</EuiTitle>
</div>
))}
</EuiText>
{hiddenItemsCount ? (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,13 @@ export const CollapsibleIndicesList: React.FunctionComponent<Props> = ({ indices
) : (
<>
<EuiText>
<ul>
{items.map((index) => (
<li key={index}>
<EuiTitle size="xs">
<span>{index}</span>
</EuiTitle>
</li>
))}
</ul>
{items.map((index) => (
<div key={index}>
<EuiTitle size="xs">
<span>{index}</span>
</EuiTitle>
</div>
))}
</EuiText>
{hiddenItemsCount ? (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export const PolicyStepReview: React.FunctionComponent<StepProps> = ({
</EuiFlexItem>
</EuiFlexGroup>

<EuiSpacer size="m" />
<EuiSpacer size="xxl" />

{/* Snapshot settings summary */}
<EuiTitle size="s">
Expand Down

0 comments on commit eca5016

Please sign in to comment.