diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/steps/components/dataset_combo.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/steps/components/dataset_combo.tsx
index 6908f8fea130f..c310cf2b29d3a 100644
--- a/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/steps/components/dataset_combo.tsx
+++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/steps/components/dataset_combo.tsx
@@ -6,9 +6,11 @@
*/
import React, { useEffect, useState } from 'react';
-import { EuiComboBox } from '@elastic/eui';
+import { EuiComboBox, EuiIcon, EuiLink, EuiSpacer, EuiText, EuiToolTip } from '@elastic/eui';
import { i18n } from '@kbn/i18n';
+import { FormattedMessage } from '@kbn/i18n-react';
+
import type { DataStream } from '../../../../../../../../../common/types';
interface SelectedDataset {
@@ -73,24 +75,59 @@ export const DatasetComboBox: React.FC<{
});
};
return (
-
+ <>
+
+ {valueAsOption && valueAsOption.value.package !== pkgName && (
+ <>
+
+
+
+
+
+ }
+ >
+
+ {i18n.translate('xpack.fleet.datasetCombo.learnMoreLink', {
+ defaultMessage: 'learn more',
+ })}
+
+
+ ),
+ }}
+ />
+
+ >
+ )}
+ >
);
};