Skip to content

Commit

Permalink
Reorder App Search ingestion methods (#111361) (#111444)
Browse files Browse the repository at this point in the history
Co-authored-by: Orhan Toy <[email protected]>
  • Loading branch information
kibanamachine and orhantoy authored Sep 7, 2021
1 parent 673bcfd commit 230074a
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,19 @@ export const DocumentCreationButtons: React.FC<Props> = ({ disabled = false }) =
</EuiText>
<EuiSpacer />
<EuiFlexGrid columns={2}>
<EuiFlexItem>
<EuiCardTo
display="subdued"
title={i18n.translate(
'xpack.enterpriseSearch.appSearch.documentCreation.buttons.crawl',
{ defaultMessage: 'Use the Crawler' }
)}
description=""
icon={<EuiIcon type="globe" size="xxl" color="primary" />}
to={crawlerLink}
isDisabled={disabled}
/>
</EuiFlexItem>
<EuiFlexItem>
<EuiCard
display="subdued"
Expand Down Expand Up @@ -97,19 +110,6 @@ export const DocumentCreationButtons: React.FC<Props> = ({ disabled = false }) =
isDisabled={disabled}
/>
</EuiFlexItem>
<EuiFlexItem>
<EuiCardTo
display="subdued"
title={i18n.translate(
'xpack.enterpriseSearch.appSearch.documentCreation.buttons.crawl',
{ defaultMessage: 'Use the Crawler' }
)}
description=""
icon={<EuiIcon type="globe" size="xxl" color="primary" />}
to={crawlerLink}
isDisabled={disabled}
/>
</EuiFlexItem>
</EuiFlexGrid>
</>
);
Expand Down

0 comments on commit 230074a

Please sign in to comment.