Skip to content

Commit

Permalink
Integrations back in menu, icons for app search cards (#118446) (#118783
Browse files Browse the repository at this point in the history
)

* Integrations back in menu, icons for app search cards

* title case

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Dave Snider <dave.snider@gmail.com>
  • Loading branch information
kibanamachine and snide authored Nov 16, 2021
1 parent 1c55a2d commit 7d8cbb3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions src/core/public/chrome/ui/header/collapsible_nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ export function CollapsibleNav({
(link) =>
// Filterting out hidden links,
!link.hidden &&
// integrations link in favor of a specific Add Data button at the bottom,
link.id !== 'integrations' &&
// and non-data overview pages
!overviewIDsToHide.includes(link.id)
),
Expand Down
10 changes: 5 additions & 5 deletions x-pack/plugins/enterprise_search/server/integrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,20 +305,20 @@ export const registerEnterpriseSearchIntegrations = (
customIntegrations.registerCustomIntegration({
id: 'app_search_web_crawler',
title: i18n.translate('xpack.enterpriseSearch.appSearch.integrations.webCrawlerName', {
defaultMessage: 'Web Crawler',
defaultMessage: 'Web site crawler',
}),
description: i18n.translate(
'xpack.enterpriseSearch.appSearch.integrations.webCrawlerDescription',
{
defaultMessage: "Add search to your website with App Search's web crawler.",
defaultMessage: 'Add search to your website with the App Search web crawler.',
}
),
categories: ['website_search'],
uiInternalPath: '/app/enterprise_search/app_search/engines/new?method=crawler',
icons: [
{
type: 'eui',
src: 'globe',
src: 'logoAppSearch',
},
],
shipper: 'enterprise_search',
Expand All @@ -338,7 +338,7 @@ export const registerEnterpriseSearchIntegrations = (
icons: [
{
type: 'eui',
src: 'exportAction',
src: 'logoAppSearch',
},
],
shipper: 'enterprise_search',
Expand All @@ -358,7 +358,7 @@ export const registerEnterpriseSearchIntegrations = (
icons: [
{
type: 'eui',
src: 'editorCodeBlock',
src: 'logoAppSearch',
},
],
shipper: 'enterprise_search',
Expand Down

0 comments on commit 7d8cbb3

Please sign in to comment.