From 307e9644b439bdc71a0260bdd222c09939eb9dcf Mon Sep 17 00:00:00 2001 From: Ryland Herrick Date: Thu, 27 Jun 2024 16:49:20 -0500 Subject: [PATCH] Update copy to be more direct "Start more jobs" is unnecessarily ambiguous, since the end goal is to have all relevant jobs enabled. --- .../components/step_define_rule/translations.tsx | 2 +- .../rule_creation/machine_learning_rule_suppression.cy.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_creation_ui/components/step_define_rule/translations.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_creation_ui/components/step_define_rule/translations.tsx index 73eb7a4d9723f..5ad3639b49eff 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_creation_ui/components/step_define_rule/translations.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_creation_ui/components/step_define_rule/translations.tsx @@ -245,7 +245,7 @@ export const MACHINE_LEARNING_SUPPRESSION_INCOMPLETE_LABEL = i18n.translate( 'xpack.securitySolution.detectionEngine.createRule.stepDefineRule.machineLearningSuppressionIncompleteLabel', { defaultMessage: - 'This list of fields might be incomplete as some Machine Learning jobs are not running. Start more jobs to add more fields.', + 'This list of fields might be incomplete as some Machine Learning jobs are not running. Start all relevant jobs for a complete list.', } ); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/detection_engine/rule_creation/machine_learning_rule_suppression.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/detection_engine/rule_creation/machine_learning_rule_suppression.cy.ts index 2e1b161784849..b048b1ad2af5a 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/detection_engine/rule_creation/machine_learning_rule_suppression.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/detection_engine/rule_creation/machine_learning_rule_suppression.cy.ts @@ -114,7 +114,7 @@ describe( cy.get(ALERT_SUPPRESSION_FIELDS_INPUT).should('be.enabled'); cy.get(ALERT_SUPPRESSION_FIELDS).should( 'contain.text', - 'This list of fields might be incomplete as some Machine Learning jobs are not running. Start more jobs to add more fields.' + 'This list of fields might be incomplete as some Machine Learning jobs are not running. Start all relevant jobs for a complete list.' ); }); });