Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*/

import { INTEGRATION_CARD_HEIGHT } from '../../common/integrations/constants';
import { SEARCH_AI_LAKE_ALLOWED_INTEGRATIONS } from '../../../../../../common/lib/search_ai_lake/integrations';
import { IntegrationTabId, type Tab } from '../../../../../../common/lib/integrations/types';
import { AI_FOR_SOC_INTEGRATIONS } from '../../../../../../../common/constants';
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that's the right one, thank you.


export const INTEGRATION_TABS: Tab[] = [
{
Expand All @@ -19,7 +19,7 @@ export const INTEGRATION_TABS: Tab[] = [
// Fleet has a default sorting for integrations by category that Security Solution does not want to apply
// so we need to disable the sorting for the recommended tab to allow static ordering according to the featuredCardIds
sortByFeaturedIntegrations: false,
featuredCardIds: SEARCH_AI_LAKE_ALLOWED_INTEGRATIONS,
featuredCardIds: AI_FOR_SOC_INTEGRATIONS,
height: `${INTEGRATION_CARD_HEIGHT * 1.8}px`,
},
];