mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[Defend Workflows] Fix response actions copy (#161615)
This commit is contained in:
parent
7ea0dd6b11
commit
203c9b04b6
5 changed files with 5 additions and 5 deletions
|
@ -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');
|
||||
|
|
|
@ -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' };
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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."
|
||||
/>
|
||||
),
|
||||
};
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue