Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mitodrummer committed Nov 18, 2021
1 parent 4863604 commit 4293788
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export const ProcessTree = ({
const isVisible = eTop >= cTop && eBottom <= cBottom;

if (!isVisible) {
// processEl.scrollIntoView();
processEl.scrollIntoView();
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ export const registerProcessEventsRoute = (router: IRouter) => {
},
async (context, request, response) => {
const client = context.core.elasticsearch.client.asCurrentUser;

// TODO: would be good to figure out how to add securitySolution as a dep
// and make use of this way of getting the siem-signals index, instead of
// hardcoding it.
// const siemClient = context.securitySolution.getAppClient();
// const alertsIndex = siemClient.getSignalsIndex(),

const { sessionEntityId } = request.query;

Expand Down

0 comments on commit 4293788

Please sign in to comment.