+ {ENABLEMENT_WARNING_SELECT_TO_PROCEED}
+
+ );
return (
toggle(false)}>
@@ -131,13 +148,25 @@ export const EntityStoreEnablementModal: React.FC
- toggle(false)}>{'Cancel'}
-
-
-
+
+ {!enablementOptions ? {proceedWarning} : null}
+
+
+ toggle(false)}>{'Cancel'}
+
+
+
+
+
+
);
diff --git a/x-pack/plugins/security_solution/public/entity_analytics/components/entity_store/translations.ts b/x-pack/plugins/security_solution/public/entity_analytics/components/entity_store/translations.ts
index 4c113dd533acb..f2920612543d9 100644
--- a/x-pack/plugins/security_solution/public/entity_analytics/components/entity_store/translations.ts
+++ b/x-pack/plugins/security_solution/public/entity_analytics/components/entity_store/translations.ts
@@ -62,3 +62,10 @@ export const ENABLEMENT_DESCRIPTION_BOTH = i18n.translate(
'Your entity store is currently empty. Add information about your entities directly from your logs, or import them using a text file.',
}
);
+
+export const ENABLEMENT_WARNING_SELECT_TO_PROCEED = i18n.translate(
+ 'xpack.securitySolution.entityAnalytics.entityStore.enablement.description.enablementWarningMessage',
+ {
+ defaultMessage: 'Please enable at least one option to proceed.',
+ }
+);