Skip to content

Commit

Permalink
ProcessEventListNarrowedByType component is in module w/ the same name
Browse files Browse the repository at this point in the history
  • Loading branch information
oatkiller committed Jun 30, 2020
1 parent abe897d commit d2cf840
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { useResolverDispatch } from './use_resolver_dispatch';
import * as event from '../../../common/endpoint/models/event';
import { ResolverEvent, ResolverNodeStats } from '../../../common/endpoint/types';
import { SideEffectContext } from './side_effect_context';
import { ProcessEventListNarrowedByType } from './panels/panel_content_related_list';
import { ProcessEventListNarrowedByType } from './panels/process_event_list_narrowed_by_type';
import { EventCountsForProcess } from './panels/panel_content_related_counts';
import { ProcessDetails } from './panels/panel_content_process_detail';
import { ProcessListWithCounts } from './panels/panel_content_process_list';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export const ProcessEventListNarrowedByType = memo(function ProcessEventListNarr
}) {
const processName = processEvent && event.eventName(processEvent);
const processEntityId = event.entityId(processEvent);

const totalCount = Object.values(relatedStats.events.byCategory).reduce(
(sum, val) => sum + val,
0
Expand Down Expand Up @@ -244,4 +245,3 @@ export const ProcessEventListNarrowedByType = memo(function ProcessEventListNarr

return <DisplayList crumbs={crumbs} matchingEventEntries={matchingEventEntries} />;
});
ProcessEventListNarrowedByType.displayName = 'ProcessEventListNarrowedByType';

0 comments on commit d2cf840

Please sign in to comment.