Skip to content

Commit

Permalink
post merge type fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dosant committed Aug 27, 2024
1 parent 3e5be35 commit 4089a66
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ export {
} from './components/logging/log_text_stream/log_entry_column';
export type { LogAIAssistantProps } from './components/log_ai_assistant/log_ai_assistant';
export type { LogStreamProps } from './components/log_stream/log_stream';
export type {
UpdatedDateRange,
VisibleInterval,
} from './components/logging/log_text_stream/scrollable_log_text_stream_view';

export const WithSummary = dynamic(() => import('./containers/logs/log_summary/with_summary'));
export const LogEntryFlyout = dynamic(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { isNoneGroup, useGrouping } from '@kbn/grouping';
import { isEmpty, isEqual } from 'lodash/fp';
import type { Storage } from '@kbn/kibana-utils-plugin/public';
import type { TableIdLiteral } from '@kbn/securitysolution-data-table';
import type { GroupingArgs } from '@kbn/securitysolution-grouping/src';
import type { GroupingArgs } from '@kbn/grouping/src';
import { groupIdSelector } from '../../../common/store/grouping/selectors';
import { getDefaultGroupingOptions } from '../../../common/utils/alerts';
import { useDeepEqualSelector } from '../../../common/hooks/use_selector';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export const useTimelineTypes = ({
data-test-subj={`open-timeline-modal-body-${TimelineTabsStyle.filter}-${tab.id}`}
isSelected={tab.id === timelineType}
key={`timeline-${TimelineTabsStyle.filter}-${tab.id}`}
onClick={(ev: { preventDefault: () => void }) => {
onClick={(ev: React.SyntheticEvent<Element, Event>) => {
tab.onClick(ev);
onFilterClicked(tab.id, TimelineTabsStyle.filter);
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import styled from 'styled-components';

import type { State } from '../../../common/store';
import { RowRendererValues } from '../../../../common/api/timeline';
import type { RowRendererId } from '../../../../common/api/timeline';
import { useDeepEqualSelector } from '../../../common/hooks/use_selector';
import { setExcludedRowRendererIds as dispatchSetExcludedRowRendererIds } from '../../store/actions';
import { timelineSelectors } from '../../store';
Expand Down

0 comments on commit 4089a66

Please sign in to comment.