mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[SIEM][Timelines] Updates timeline template callout text (#73334)
* updates timeline template callout text * fixes typo in constant Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
parent
c0826a3273
commit
1c791f39da
3 changed files with 4 additions and 4 deletions
|
@ -177,7 +177,7 @@ describe('Header', () => {
|
|||
expect(
|
||||
wrapper.find('[data-test-subj="timelineImmutableCallOut"]').first().prop('title')
|
||||
).toEqual(
|
||||
'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'
|
||||
'This prebuilt timeline template cannot be modified. To make changes, please duplicate this template and make modifications to the duplicate template.'
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -73,7 +73,7 @@ const TimelineHeaderComponent: React.FC<Props> = ({
|
|||
{status === TimelineStatus.immutable && (
|
||||
<EuiCallOut
|
||||
data-test-subj="timelineImmutableCallOut"
|
||||
title={i18n.CALL_OUT_IMMUTIABLE}
|
||||
title={i18n.CALL_OUT_IMMUTABLE}
|
||||
color="primary"
|
||||
iconType="alert"
|
||||
size="s"
|
||||
|
|
|
@ -14,10 +14,10 @@ export const CALL_OUT_UNAUTHORIZED_MSG = i18n.translate(
|
|||
}
|
||||
);
|
||||
|
||||
export const CALL_OUT_IMMUTIABLE = i18n.translate(
|
||||
export const CALL_OUT_IMMUTABLE = i18n.translate(
|
||||
'xpack.securitySolution.timeline.callOut.immutable.message.description',
|
||||
{
|
||||
defaultMessage:
|
||||
'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',
|
||||
'This prebuilt timeline template cannot be modified. To make changes, please duplicate this template and make modifications to the duplicate template.',
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue