[Security Solution][Notes] show timeline bottom bar on the notes management page to allow user to visualize timeline (#212690)

## Summary

This previous [PR](https://github.com/elastic/kibana/pull/199374) that
unified the notes management links introduced a small issue where the
Timeline bottom bar was not shown anymore, and Timelines couldn't be
opened from the icon in the notes table.

This PR brings back the Timeline feature to that page, which fixes the
issue with Timeline not opening when clicking on the button in the
table.

#### Before


https://github.com/user-attachments/assets/ce3fdf1f-f7e4-43ff-b5c8-240f0e3a6770

#### After


https://github.com/user-attachments/assets/a8c7a39c-8913-4c12-8191-7e171ff5050e
This commit is contained in:
Philippe Oberti 2025-02-27 22:25:44 +01:00 committed by GitHub
parent 837667d342
commit c0c64a8489
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,6 +27,6 @@ export const links: LinkItem = {
capabilities: [[`${SECURITY_FEATURE_ID}.show`, `${NOTES_FEATURE_ID}.read`]],
landingIcon: 'filebeatApp',
skipUrlState: true,
hideTimeline: true,
hideTimeline: false,
hideWhenExperimentalKey: 'securitySolutionNotesDisabled',
};