Skip to content

Commit

Permalink
fix query id for tls selector (#49540) (#49632)
Browse files Browse the repository at this point in the history
  • Loading branch information
angorayc authored Oct 29, 2019
1 parent d9dea05 commit f3076c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/legacy/plugins/siem/public/containers/tls/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class TlsComponentQuery extends QueryTemplatePaginated<
const makeMapStateToProps = () => {
const getTlsSelector = networkSelectors.tlsSelector();
const getQuery = inputsSelectors.globalQueryByIdSelector();
return (state: State, { flowTarget, id = `${ID}-${flowTarget}`, type }: OwnProps) => {
return (state: State, { flowTarget, id = ID, type }: OwnProps) => {
const { isInspected } = getQuery(state, id);
return {
...getTlsSelector(state, type, flowTarget),
Expand Down

0 comments on commit f3076c0

Please sign in to comment.