-
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
[TIP] Investigate in timeline #140496
Merged
PhilippeOberti
merged 16 commits into
elastic:main
from
PhilippeOberti:investigate-in-timeline
Sep 19, 2022
Merged
[TIP] Investigate in timeline #140496
Changes from 2 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
6da1cb1
[TIP] Investigate in timeline
PhilippeOberti 00c7528
[TIP] Second implementation of investigate in timeline
PhilippeOberti ea4868b
Merge branch 'main' into investigate-in-timeline
PhilippeOberti f0f6548
Merge branch 'main' into investigate-in-timeline
PhilippeOberti 891c409
[TIP] Separate Investigate In Timeline in 2 components
PhilippeOberti 894e240
[TIP] Fix data-provider file should be snake_case
PhilippeOberti 5861e18
Merge branch 'main' into investigate-in-timeline
PhilippeOberti 938597d
[TIP] Fix wrong namespace for translation id
PhilippeOberti d621e20
[TIP] Bump kbn-optimizer limit for threatIntelligence
PhilippeOberti e78ee30
Merge branch 'main' into investigate-in-timeline
kibanamachine 032866c
Merge branch 'main' into investigate-in-timeline
kibanamachine b12e48b
Merge branch 'main' into investigate-in-timeline
kibanamachine ec85eba
Merge branch 'main' into investigate-in-timeline
kibanamachine 5af030b
Merge branch 'main' into investigate-in-timeline
PhilippeOberti eb5538a
[TIP] Fix many small UI issues
PhilippeOberti 7d81350
[TIP] Code clean
PhilippeOberti File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 0 additions & 18 deletions
18
...ugins/threat_intelligence/public/modules/indicators/components/indicators_table/styles.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
any partucular reason to do
value != null && value !== ''
instead of!value
. Also not sure why non-strict comparison with null. I'd vote for a simpler versionThere 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.
ok I was confused for a sec...
!value
will not work with empty strings, but!!value will
. It's cleaned up now! :)