[Security Solution ] Unified Timeline - Enables unified components by default and inverts the feature flag. #187460
Conversation
|
/ci |
|
/ci |
|
/ci |
|
/ci |
|
Pinging @elastic/security-threat-hunting-investigations (Team:Threat Hunting:Investigations) |
PhilippeOberti
left a comment
There was a problem hiding this comment.
code LGTM for the Threat Hunting Investigations team!
One small note though, there are a few places in the code where you changed
const something = unifiedComponentsInTimelineEnabled ? this : that;
into
const something = !!unifiedComponentsInTimelineDisabled ? this : that;
but for readability I feel like this would be easier on the eye?
const something = unifiedComponentsInTimelineDisabled ? that : this;
But maybe that's just me...
You are right. It is mistake most probably. I will change it. Thanks for the feedback. |
|
/ci |
@PhilippeOberti , I could not find double exclamation in the code as you mentioned above. I think you meant single exclamation. I kept it like it because it will be easier to remove as when removing we will automatically keep only the truthy value. ( because |
dplumlee
left a comment
There was a problem hiding this comment.
Rule management changes lgtm!
I'm so sorry I didn't mean to have 2 exclamation marks. My original message was about switching |
⏳ Build in-progress, with failures
Failed CI StepsTest Failures
History
|
| 'Unsaved Timeline query tab', | ||
| { | ||
| tags: ['@ess', '@serverless', '@skipInServerlessMKI'], | ||
| env: { |
There was a problem hiding this comment.
If the FF is not needed anymore, consider to remove the @skipInServerlessMKI.
| 'Unified Timeline table Row Actions', | ||
| { | ||
| tags: ['@ess', '@serverless', '@skipInServerlessMKI'], | ||
| env: { |
There was a problem hiding this comment.
If the FF is not needed anymore, consider to remove the @skipInServerlessMKI.
paul-tavares
left a comment
There was a problem hiding this comment.
Changes owned by security-defend-workflows team looks good 👍
Flaky Test Runner Stats🟠 Some tests failed. - kibana-flaky-test-suite-runner#6547[✅] Security Solution Investigations - Cypress: 25/25 tests passed. |
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
Summary
This PR inverts the feature flag from
unifiedComponentsInTimelineEnabledtounifiedComponentsInTimelineDisabledwith a defualt value of false.unified componentsare enabled.