Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ export const COLLAPSE = i18n.translate(
export const ACTION_INVESTIGATE_IN_RESOLVER = i18n.translate(
'xpack.securitySolution.timeline.body.actions.investigateInResolverTooltip',
{
defaultMessage: 'Investigate in Resolver',
defaultMessage: 'Analyze event',
}
);
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ export const EventsTrSupplement = styled.div.attrs(({ className = '' }) => ({
export const EventsTdGroupActions = styled.div.attrs(({ className = '' }) => ({
className: `siemEventsTable__tdGroupActions ${className}`,
}))<{ actionsColumnWidth: number }>`
align-items: center;
display: flex;
flex: 0 0 ${({ actionsColumnWidth }) => `${actionsColumnWidth}px`};
min-width: 0;
Expand Down