[Security Solution] Update tooltip text on responder (#135706)

This commit is contained in:
Dan Panzarella 2022-07-05 10:17:54 -04:00 committed by GitHub
parent 9619311120
commit b20fe6d74f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,11 +14,14 @@ import { HostStatus } from '../../../../common/endpoint/types';
export const NOT_FROM_ENDPOINT_HOST_TOOLTIP = i18n.translate(
'xpack.securitySolution.endpoint.detections.takeAction.responseActionConsole.notSupportedTooltip',
{ defaultMessage: 'The current item does not support endpoint response actions' }
{
defaultMessage:
'Add the Endpoint and Cloud Security integration via Elastic Agent to enable this feature',
}
);
export const HOST_ENDPOINT_UNENROLLED_TOOLTIP = i18n.translate(
'xpack.securitySolution.endpoint.detections.takeAction.responseActionConsole.unenrolledTooltip',
{ defaultMessage: 'Host is no longer enrolled with endpoint security' }
{ defaultMessage: 'Host is no longer enrolled with the Endpoint and Cloud Security integration' }
);
export const LOADING_ENDPOINT_DATA_TOOLTIP = i18n.translate(
'xpack.securitySolution.endpoint.detections.takeAction.responseActionConsole.loadingTooltip',