-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Security Solution] Refactor Timeline Events to use Search Strategy #77205
[Security Solution] Refactor Timeline Events to use Search Strategy #77205
Conversation
…details-search-strategy
Pinging @elastic/siem (Team:SIEM) |
💚 Build SucceededBuild metrics@kbn/optimizer bundle module count
async chunks size
page load bundle size
distributable file count
History
To update your PR or re-run it, just comment with: |
@@ -129,8 +129,6 @@ const mapDispatchToProps = (dispatch: Dispatch, { timelineId }: OwnProps) => ({ | |||
dispatch(timelineActions.updateDescription({ id, description })), | |||
updateIsFavorite: ({ id, isFavorite }: { id: string; isFavorite: boolean }) => | |||
dispatch(timelineActions.updateIsFavorite({ id, isFavorite })), | |||
updateIsLive: ({ id, isLive }: { id: string; isLive: boolean }) => | |||
dispatch(timelineActions.updateIsLive({ id, isLive })), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could we also remove updateIsLive
from reducer and actions as well, seems it is never triggered.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nicely done. Ran on my local, all looks fine, thank you!
Pinging @elastic/security-solution (Team: SecuritySolution) |
Summary
Before:
After:
Checklist