[Defend Workflows] Fix response actions copy (#161615)

This commit is contained in:
Tomasz Ciecierski 2023-07-11 12:49:58 +02:00 committed by GitHub
parent 7ea0dd6b11
commit 203c9b04b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View file

@ -132,7 +132,7 @@ describe('Alert Event Details', () => {
cy.getBySel('globalLoadingIndicator').should('not.exist');
closeDateTabIfVisible();
cy.getBySel('edit-rule-actions-tab').click();
cy.contains('Response actions are run on each rule execution');
cy.contains('Response actions are run on each rule execution.');
cy.getBySel(OSQUERY_RESPONSE_ACTION_ADD_BUTTON).click();
cy.getBySel(RESPONSE_ACTIONS_ITEM_0).within(() => {
cy.contains('Query is a required field');

View file

@ -12,7 +12,7 @@ export const getActionDetails = (actionTypeId: string) => {
case RESPONSE_ACTION_TYPES.OSQUERY:
return { logo: 'logoOsquery', name: 'Osquery' };
case RESPONSE_ACTION_TYPES.ENDPOINT:
return { logo: 'logoSecurity', name: 'Endpoint' };
return { logo: 'logoSecurity', name: 'Endpoint Security' };
// update when new responseActions are provided
default:
return { logo: 'logoOsquery', name: 'Osquery' };

View file

@ -74,7 +74,7 @@ const ActionTypeFieldComponent = ({
helpText: (
<FormattedMessage
id="xpack.securitySolution.responseActions.endpoint.commandDescription"
defaultMessage="Select an Endpoint response action. The response action only runs on hosts with Elastic Defend installed. {docs}"
defaultMessage="Select an endpoint response action. The response action only runs on hosts with Elastic Defend installed. {docs}"
values={{
docs: (
<EuiLink href={responseActions} target="_blank">

View file

@ -23,7 +23,7 @@ const CONFIG = {
helpText: (
<FormattedMessage
id="xpack.securitySolution.responseActions.endpoint.commentDescription"
defaultMessage="Leave a note that explains or describes the action. You can see your comment in Response action history log."
defaultMessage="Leave a note that explains or describes the action. You can see your comment in the response actions history log."
/>
),
};

View file

@ -49,7 +49,7 @@ export const ResponseActionsHeader = () => {
<EuiFlexItem>
<FormattedMessage
defaultMessage="Response actions are run on each rule execution"
defaultMessage="Response actions are run on each rule execution."
id="xpack.securitySolution.actionForm.responseActionSectionsTitle"
/>
</EuiFlexItem>