diff --git a/public/components/integrations/components/added_integration_table.tsx b/public/components/integrations/components/added_integration_table.tsx index 741c21ffa..f8205e004 100644 --- a/public/components/integrations/components/added_integration_table.tsx +++ b/public/components/integrations/components/added_integration_table.tsx @@ -94,7 +94,7 @@ export function AddedIntegrationsTable(props: AddedIntegrationsTableProps) { truncateText: true, render: (value, record) => ( - {truncate(record.dataSourceMDSLabel || 'Local cluster', { length: 100 })} + {_.truncate(record.dataSourceMDSLabel || 'Local cluster', { length: 100 })} ), }); diff --git a/public/components/integrations/components/available_integration_card_view.tsx b/public/components/integrations/components/available_integration_card_view.tsx index a4ee7aed7..621d5310f 100644 --- a/public/components/integrations/components/available_integration_card_view.tsx +++ b/public/components/integrations/components/available_integration_card_view.tsx @@ -4,23 +4,19 @@ */ import { - EuiPanel, + EuiButtonGroup, EuiCard, + EuiCompressedFieldSearch, EuiFlexGroup, EuiFlexItem, + EuiPanel, EuiSpacer, - EuiCompressedFieldSearch, - EuiButtonGroup, } from '@elastic/eui'; -import _ from 'lodash'; import React, { useState } from 'react'; -import { - AvailableIntegrationsCardViewProps, - AvailableIntegrationType, -} from './available_integration_overview_page'; import { INTEGRATIONS_BASE } from '../../../../common/constants/shared'; -import { badges } from './integration_category_badge_group'; import { basePathLink } from '../../../../common/utils/shared'; +import { AvailableIntegrationsCardViewProps } from './available_integration_overview_page'; +import { badges } from './integration_category_badge_group'; export function AvailableIntegrationsCardView(props: AvailableIntegrationsCardViewProps) { const [toggleIconIdSelected, setToggleIconIdSelected] = useState('1'); @@ -57,7 +53,7 @@ export function AvailableIntegrationsCardView(props: AvailableIntegrationsCardVi } }; - const renderRows = (integrations: AvailableIntegrationType[]) => { + const renderRows = (integrations: IntegrationConfig[]) => { if (!integrations || !integrations.length) return null; return ( <> @@ -68,11 +64,11 @@ export function AvailableIntegrationsCardView(props: AvailableIntegrationsCardVi