Skip to content

Commit aee35b8

Browse files
MadameSheemaelasticmachine
authored andcommitted
[SIEM][Timelines] Updates timeline template callout text (#73334)
* updates timeline template callout text * fixes typo in constant Co-authored-by: Elastic Machine <[email protected]>
1 parent f615e67 commit aee35b8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

x-pack/plugins/security_solution/public/timelines/components/timeline/header/index.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ describe('Header', () => {
177177
expect(
178178
wrapper.find('[data-test-subj="timelineImmutableCallOut"]').first().prop('title')
179179
).toEqual(
180-
'This timeline is immutable, therefore not allowed to save it within the security application, though you may continue to use the timeline to search and filter security events'
180+
'This prebuilt timeline template cannot be modified. To make changes, please duplicate this template and make modifications to the duplicate template.'
181181
);
182182
});
183183
});

x-pack/plugins/security_solution/public/timelines/components/timeline/header/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const TimelineHeaderComponent: React.FC<Props> = ({
7373
{status === TimelineStatus.immutable && (
7474
<EuiCallOut
7575
data-test-subj="timelineImmutableCallOut"
76-
title={i18n.CALL_OUT_IMMUTIABLE}
76+
title={i18n.CALL_OUT_IMMUTABLE}
7777
color="primary"
7878
iconType="alert"
7979
size="s"

x-pack/plugins/security_solution/public/timelines/components/timeline/header/translations.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ export const CALL_OUT_UNAUTHORIZED_MSG = i18n.translate(
1414
}
1515
);
1616

17-
export const CALL_OUT_IMMUTIABLE = i18n.translate(
17+
export const CALL_OUT_IMMUTABLE = i18n.translate(
1818
'xpack.securitySolution.timeline.callOut.immutable.message.description',
1919
{
2020
defaultMessage:
21-
'This timeline is immutable, therefore not allowed to save it within the security application, though you may continue to use the timeline to search and filter security events',
21+
'This prebuilt timeline template cannot be modified. To make changes, please duplicate this template and make modifications to the duplicate template.',
2222
}
2323
);

0 commit comments

Comments
 (0)